Skip to content

Commit aa038af

Browse files
committed
Ignore nvc switch errors
1 parent b8028fc commit aa038af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/cuda.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ jobs:
6262
uses: ./.github/actions/linux_install
6363
- name: Install Pyccel with tests
6464
run: |
65-
python -m pip install --upgrade pip
66-
python -m pip install .[test]
65+
# Ignore nvc switch errors
66+
export CFLAGS=-noswitcherror
67+
python -m pip install --upgrade pip
68+
python -m pip install .[test]
6769
shell: bash
6870
- name: Coverage install
6971
uses: ./.github/actions/coverage_install

0 commit comments

Comments
 (0)