Skip to content

Commit 7014d60

Browse files
committed
Temporarily disable Windows 2022 Release CI builds
Temporarily disable Windows 2022 Release CI builds (or replace them with Debug builds) because they started failing for unknown reason. Revert this commit when Windows 2022 CI machines are fixed. Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
1 parent 2a0dc99 commit 7014d60

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/basic.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,21 +159,24 @@ jobs:
159159
level_zero_provider: ['ON']
160160
include:
161161
- os: 'windows-2022'
162-
build_type: Release
162+
build_type: Debug
163163
compiler: {c: clang-cl, cxx: clang-cl}
164164
shared_library: 'ON'
165165
level_zero_provider: 'ON'
166166
toolset: "-T ClangCL"
167167
- os: 'windows-2022'
168-
build_type: Release
168+
build_type: Debug
169169
compiler: {c: cl, cxx: cl}
170170
shared_library: 'ON'
171171
level_zero_provider: 'ON'
172172
- os: 'windows-2022'
173-
build_type: Release
173+
build_type: Debug
174174
compiler: {c: cl, cxx: cl}
175175
shared_library: 'ON'
176176
level_zero_provider: 'OFF'
177+
exclude:
178+
- os: 'windows-2022'
179+
build_type: Release
177180

178181
runs-on: ${{matrix.os}}
179182

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
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"
1515
strategy:
1616
matrix:
17-
os: ['ubuntu-latest', 'windows-latest']
17+
os: ['ubuntu-latest']
1818
include:
1919
# Windows doesn't recognize 'CMAKE_BUILD_TYPE', it uses '--config' param in build command to determine the build type
2020
- os: ubuntu-latest

.github/workflows/pr_push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,16 @@ jobs:
103103
${{matrix.extra_build_options}}
104104
105105
- name: Build
106-
run: cmake --build ${{github.workspace}}/build --config Release -j
106+
run: cmake --build ${{github.workspace}}/build --config Debug -j
107107

108108
- name: Run examples
109109
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
111111

112112
- name: Run tests
113113
if: matrix.build_tests == 'ON'
114114
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
116116

117117
CodeStyle:
118118
name: Coding style

0 commit comments

Comments
 (0)