Skip to content

Commit

Permalink
CICD: Fix windows build
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Sep 28, 2023
1 parent 21d99f1 commit 7bfab12
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scripts/install-deps-windows.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/pwsh
# Install deps

winget install --accept-package-agreements --accept-source-agreements LLVM -e
winget install --accept-package-agreements --accept-source-agreements CMake -e
winget list -e LLVM
if ($LASTEXITCODE -ne 0) {
winget install --accept-package-agreements --accept-source-agreements LLVM -e
}

winget list -e CMake
if ($LASTEXITCODE -ne 0) {
winget install --accept-package-agreements --accept-source-agreements CMake -e
}

0 comments on commit 7bfab12

Please sign in to comment.