Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagico2 authored Jul 26, 2024
1 parent 1f37bf7 commit 5b1861c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, ubuntu-20.04, windows-latest, macOS-11 ]
os: [ windows-latest ]
arch: [ x64 ]
include:
- os: windows-latest
arch: x86
- os: windows-latest
arch: ARM64
runs-on: ${{ matrix.os }}

permissions:
Expand All @@ -37,6 +39,8 @@ jobs:
run: |
if ("${{matrix.arch}}" -eq "x64") {
$msbuildPlatform = "x64"
} elif ("${{matrix.arch}}" -eq "ARM64") {
$msbuildPlatform = "ARM64"
} else {
$msbuildPlatform = "Win32"
}
Expand Down

0 comments on commit 5b1861c

Please sign in to comment.