File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,19 @@ jobs:
44
44
build-windows :
45
45
name : Build App for Windows
46
46
runs-on : windows-latest
47
+ strategy :
48
+ fail-fast : false
49
+ matrix :
50
+ arch : [x64, ARM64]
47
51
steps :
48
52
- name : Checkout code
49
53
uses : actions/checkout@v2
50
54
with :
51
55
submodules : true
52
56
- 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
54
58
- name : Upload Artifacts
55
59
uses : actions/upload-artifact@v2
56
60
with :
57
- name : FatFileFinder_win64
58
- path : build\release\*.exe
61
+ name : FatFileFinder_win${{ matrix.arch }}
62
+ path : build\release\*.exe
You can’t perform that action at this time.
0 commit comments