We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be71bf commit fb25aeeCopy full SHA for fb25aee
1 file changed
.github/workflows/sycl-ci.yml
@@ -67,7 +67,12 @@ jobs:
67
run: cmake --build build --parallel
68
69
- name: Test
70
- run: ONEAPI_DEVICE_SELECTOR="${DEVICE_SELECTOR}" ctest --test-dir build --output-on-failure --parallel
+ run: |
71
+ if [ -n "${DEVICE_SELECTOR}" ]; then
72
+ ONEAPI_DEVICE_SELECTOR="${DEVICE_SELECTOR}" ctest --test-dir build --output-on-failure --parallel
73
+ else
74
+ ctest --test-dir build --output-on-failure --parallel
75
+ fi
76
77
build-sycl-adaptivecpp-arm64:
78
name: ${{ matrix.platform }} / ${{ matrix.build_type }}
0 commit comments