Skip to content

Commit 9909aa1

Browse files
authored
Add WinARM build
1 parent a2f9969 commit 9909aa1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,19 @@ jobs:
4444
build-windows:
4545
name: Build App for Windows
4646
runs-on: windows-latest
47+
strategy:
48+
fail-fast: false
49+
matrix:
50+
arch: [x64, ARM64]
4751
steps:
4852
- name: Checkout code
4953
uses: actions/checkout@v2
5054
with:
5155
submodules: true
5256
- name: Build
53-
run: mkdir build; cd build; cmake -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install
57+
run: mkdir build; cd build; cmake -A${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install
5458
- name: Upload Artifacts
5559
uses: actions/upload-artifact@v2
5660
with:
57-
name: FatFileFinder_win64
58-
path: build\release\*.exe
61+
name: FatFileFinder_win${{ matrix.arch }}
62+
path: build\release\*.exe

0 commit comments

Comments
 (0)