File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -158,12 +158,14 @@ jobs:
158
158
-DUMF_LINK_HWLOC_STATICALLY=${{matrix.link_hwloc_statically}}
159
159
160
160
- name : Build UMF
161
- run : cmake --build ${{env.BUILD_DIR}} -j $(nproc)
161
+ run : |
162
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
163
+ cmake --build ${{env.BUILD_DIR}} -j $(nproc)
162
164
163
165
- name : Run tests
164
166
working-directory : ${{env.BUILD_DIR}}
165
- run : >
166
- ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh && ' || ''}}
167
+ run : |
168
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
167
169
ctest --output-on-failure --test-dir test
168
170
169
171
- name : Remove the installation directory
Original file line number Diff line number Diff line change @@ -66,12 +66,14 @@ jobs:
66
66
-DUMF_TESTS_FAIL_ON_SKIP=ON
67
67
68
68
- name : Build UMF
69
- run : cmake --build ${{env.BUILD_DIR}} -j $(nproc)
69
+ run : |
70
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
71
+ cmake --build ${{env.BUILD_DIR}} -j $(nproc)
70
72
71
73
- name : Run tests
72
74
working-directory : ${{env.BUILD_DIR}}
73
- run : >
74
- ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh && ' || '' }}
75
+ run : |
76
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
75
77
ctest --output-on-failure
76
78
77
79
windows-build :
You can’t perform that action at this time.
0 commit comments