Skip to content

Commit

Permalink
CI: Windows MSVC w/ Ninja
Browse files Browse the repository at this point in the history
It looks like `-G "Ninja"` swapped the compiler from MSVC
to MinGW (GCC). This ensures MSVC is actually used and
tested in CI.
  • Loading branch information
ax3l committed Mar 14, 2024
1 parent ae3af43 commit 73babfe
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
# Invoke-WebRequest https://github.com/ccache/ccache/releases/download/v4.8/ccache-4.8-windows-x86_64.zip -OutFile ccache-4.8-windows-x86_64.zip
# Expand-Archive ccache-4.8-windows-x86_64.zip
- name: Build & Install
env:
CC: "cl.exe"
CXX: "cl.exe"
run: |
#$ccachepath = Join-Path $pwd "ccache-4.8-windows-x86_64"
#$Env:PATH += ";$ccachepath"
Expand Down Expand Up @@ -70,6 +73,9 @@ jobs:
# Invoke-WebRequest https://github.com/ccache/ccache/releases/download/v4.8/ccache-4.8-windows-x86_64.zip -OutFile ccache-4.8-windows-x86_64.zip
# Expand-Archive ccache-4.8-windows-x86_64.zip
- name: Build & Install
env:
CC: "cl.exe"
CXX: "cl.exe"
run: |
#$ccachepath = Join-Path $pwd "ccache-4.8-windows-x86_64"
#$Env:PATH += ";$ccachepath"
Expand Down

0 comments on commit 73babfe

Please sign in to comment.