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 dadc7b8 commit 597f43fCopy full SHA for 597f43f
.github/workflows/build.yml
@@ -39,6 +39,10 @@ jobs:
39
windows:
40
name: Windows
41
runs-on: windows-latest
42
+ strategy:
43
+ fail-fast: false
44
+ matrix:
45
+ arch: [x64, arm64]
46
env:
47
DEPOT_TOOLS_WIN_TOOLCHAIN: "0"
48
steps:
@@ -59,15 +63,15 @@ jobs:
59
63
Set-Location ../skia
60
64
../depot_tools/python-bin/python3.bat tools/git-sync-deps
61
65
62
- - name: Build
66
+ - name: Build (${{ matrix.arch }})
67
shell: pwsh
68
run: |
- depot_tools/python-bin/python3.bat scripts/build.py windows all
69
+ depot_tools/python-bin/python3.bat scripts/build.py windows ${{ matrix.arch }}
70
71
- name: Upload artifact
72
uses: actions/upload-artifact@v4
73
with:
- name: windows-all
74
+ name: windows-${{ matrix.arch }}
75
path: artifacts/*
76
77
linux:
0 commit comments