Skip to content

Commit c89288b

Browse files
committed
Add msvc-arm64 to CI
Signed-off-by: falkTX <[email protected]>
1 parent 484cf9a commit c89288b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/cmake.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,23 @@ jobs:
122122
with:
123123
name: msvc-win64
124124
path: build/bin/
125+
126+
msvc-arm64:
127+
runs-on: windows-2022
128+
steps:
129+
- uses: actions/checkout@v4
130+
with:
131+
submodules: recursive
132+
- name: Configure CMake
133+
run: |
134+
cmake -S . -B build -G"Visual Studio 17 2022" -A"ARM64" -DCMAKE_BUILD_TYPE="Release"
135+
- name: Build all
136+
working-directory: build
137+
run: cmake --build . --config "Release" -j 2
138+
- name: Show built files
139+
working-directory: build/bin
140+
run: tree
141+
- uses: actions/upload-artifact@v4
142+
with:
143+
name: msvc-arm64
144+
path: build/bin/

0 commit comments

Comments
 (0)