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 96fa583 commit 9ff9452Copy full SHA for 9ff9452
.github/workflows/reusable_basic.yml
@@ -179,7 +179,8 @@ jobs:
179
- name: Run tests
180
working-directory: ${{env.BUILD_DIR}}
181
run: |
182
- LD_LIBRARY_PATH=${{env.BUILD_DIR}}/lib/ ctest --output-on-failure # run all tests for better coverage
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
183
+ LD_LIBRARY_PATH="${{env.BUILD_DIR}}/lib/:${LD_LIBRARY_PATH}" ctest --output-on-failure
184
185
- name: Check coverage
186
if: ${{ matrix.build_type == 'Debug' && matrix.compiler.c == 'gcc' }}
0 commit comments