Skip to content

Commit 4ce1b82

Browse files
authored
add windows CI
1 parent 33e083b commit 4ce1b82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [ ubuntu-latest ] #, windows-latest, macos-latest ]
17+
os: [ ubuntu-latest , windows-latest] #, macos-latest ]
1818
rust: [ stable, beta, nightly ]
1919
runs-on: ${{ matrix.os }}
2020
steps:
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
$SDK_VERSION = Invoke-RestMethod -Uri https://vulkan.lunarg.com/sdk/latest/windows.txt
6464
Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/$SDK_VERSION/windows/vulkan_sdk.exe -OutFile vulkan_sdk.exe
65-
Start-Process -FilePath vulkan_sdk.exe -ArgumentList "/S /quiet" -Wait
65+
Start-Process -FilePath "vulkan_sdk.exe" -ArgumentList "in", "--al", "--confirm-command" -Wait
6666
6767
- run: cargo build --verbose --workspace --all-targets
6868
- run: cargo check --verbose --workspace --all-targets
@@ -90,4 +90,4 @@ jobs:
9090
if: ${{ github.event_name == 'push' && matrix.rust == 'stable' }}
9191
id: deployment
9292
uses: actions/deploy-pages@v4
93-
93+

0 commit comments

Comments
 (0)