File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -159,21 +159,24 @@ jobs:
159
159
level_zero_provider : ['ON']
160
160
include :
161
161
- os : ' windows-2022'
162
- build_type : Release
162
+ build_type : Debug
163
163
compiler : {c: clang-cl, cxx: clang-cl}
164
164
shared_library : ' ON'
165
165
level_zero_provider : ' ON'
166
166
toolset : " -T ClangCL"
167
167
- os : ' windows-2022'
168
- build_type : Release
168
+ build_type : Debug
169
169
compiler : {c: cl, cxx: cl}
170
170
shared_library : ' ON'
171
171
level_zero_provider : ' ON'
172
172
- os : ' windows-2022'
173
- build_type : Release
173
+ build_type : Debug
174
174
compiler : {c: cl, cxx: cl}
175
175
shared_library : ' ON'
176
176
level_zero_provider : ' OFF'
177
+ exclude :
178
+ - os : ' windows-2022'
179
+ build_type : Release
177
180
178
181
runs-on : ${{matrix.os}}
179
182
Original file line number Diff line number Diff line change 14
14
VCPKG_PATH : " ${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
15
15
strategy :
16
16
matrix :
17
- os : ['ubuntu-latest', 'windows-latest' ]
17
+ os : ['ubuntu-latest']
18
18
include :
19
19
# Windows doesn't recognize 'CMAKE_BUILD_TYPE', it uses '--config' param in build command to determine the build type
20
20
- os : ubuntu-latest
Original file line number Diff line number Diff line change @@ -103,16 +103,16 @@ jobs:
103
103
${{matrix.extra_build_options}}
104
104
105
105
- name : Build
106
- run : cmake --build ${{github.workspace}}/build --config Release -j
106
+ run : cmake --build ${{github.workspace}}/build --config Debug -j
107
107
108
108
- name : Run examples
109
109
working-directory : ${{github.workspace}}/build
110
- run : ctest --output-on-failure --test-dir examples -C Release
110
+ run : ctest --output-on-failure --test-dir examples -C Debug
111
111
112
112
- name : Run tests
113
113
if : matrix.build_tests == 'ON'
114
114
working-directory : ${{github.workspace}}/build
115
- run : ctest --output-on-failure --test-dir test -C Release
115
+ run : ctest --output-on-failure --test-dir test -C Debug
116
116
117
117
CodeStyle :
118
118
name : Coding style
You can’t perform that action at this time.
0 commit comments