Skip to content

Commit 379a442

Browse files
authored
fix: use windows-2022 (#296)
* using hyperv with 2025 windows doesnt fix infrastructure Signed-off-by: Kozlowski, Marek <[email protected]>
1 parent ffa50cb commit 379a442

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/build-multi.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
# be indented for readability in the workflow output.
130130
if: github.repository_owner == 'oneapi-src'
131131
needs: [config, build-quick]
132-
runs-on: ${{ matrix.os.name == 'windows' && 'windows-latest' || 'ubuntu-latest' }}
132+
runs-on: ${{ matrix.os.name == 'windows' && 'windows-2022' || 'ubuntu-latest' }}
133133
strategy:
134134
fail-fast: false
135135
matrix:
@@ -202,9 +202,6 @@ jobs:
202202
${{ runner.os == 'Windows' && ' \
203203
--memory 16G ' || ' '
204204
}}\
205-
${{ runner.os == 'Windows' && ' \
206-
--isolation=hyperv ' || ' '
207-
}}\
208205
${{ matrix.os.vmaj != '' && format(' \
209206
--build-arg VMAJ={0} \
210207
--build-arg VMIN={1} ', matrix.os.vmaj, matrix.os.vmin) || ' '
@@ -218,9 +215,6 @@ jobs:
218215
docker run \
219216
--rm \
220217
--interactive \
221-
${{ runner.os == 'Windows' && ' \
222-
--isolation=hyperv ' || ' '
223-
}}\
224218
-v '${{ github.workspace }}':${MOUNT_TARGET} \
225219
-w ${MOUNT_TARGET}/level-zero/build \
226220
-e CCACHE_BASEDIR=${MOUNT_TARGET} \
@@ -249,9 +243,6 @@ jobs:
249243
docker run \
250244
--rm \
251245
--interactive \
252-
${{ runner.os == 'Windows' && ' \
253-
--isolation=hyperv ' || ' '
254-
}}\
255246
-v '${{ github.workspace }}':${MOUNT_TARGET} \
256247
-w ${MOUNT_TARGET}/build \
257248
-e CCACHE_BASEDIR=${MOUNT_TARGET} \

0 commit comments

Comments
 (0)