We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484cf9a commit c89288bCopy full SHA for c89288b
.github/workflows/cmake.yml
@@ -122,3 +122,23 @@ jobs:
122
with:
123
name: msvc-win64
124
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
143
+ name: msvc-arm64
144
+ path: build/bin/
0 commit comments