Skip to content

Commit

Permalink
debug windows ci
Browse files Browse the repository at this point in the history
Signed-off-by: Eval EXEC <[email protected]>
  • Loading branch information
eval-exec committed Feb 27, 2024
1 parent 1c326e9 commit 92c4b4f
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,22 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-11, windows-2019 ]
os: [ ubuntu-latest, macos-11, windows-latest]
steps:
- uses: actions/checkout@v2
- if: matrix.os == 'windows-2019'
- uses: actions/checkout@v3
- if: matrix.os == 'windows-latest'
name: Windows Dependencies
shell: pwsh
run: |
iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
.\install-scoop.ps1 -RunAsAdmin
echo "LIBCLANG_PATH=$($HOME)/scoop/apps/llvm/current/bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
scoop install llvm yasm
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
scoop install mingw
# iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
# .\install-scoop.ps1 -RunAsAdmin
# echo "LIBCLANG_PATH=$($HOME)/scoop/apps/llvm/current/bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# scoop install mingw
- name: UnitTest
shell: pwsh
run: make test

integration-test:
Expand Down

0 comments on commit 92c4b4f

Please sign in to comment.