Skip to content

Commit

Permalink
Add WinARM build
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug authored Jul 19, 2024
1 parent a2f9969 commit 9909aa1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,19 @@ jobs:
build-windows:
name: Build App for Windows
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
arch: [x64, ARM64]
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: mkdir build; cd build; cmake -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install
run: mkdir build; cd build; cmake -A${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: FatFileFinder_win64
path: build\release\*.exe
name: FatFileFinder_win${{ matrix.arch }}
path: build\release\*.exe

0 comments on commit 9909aa1

Please sign in to comment.