File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1010
1111jobs :
1212 headers :
13+ if : false
1314 name : Headers
1415 runs-on : ubuntu-latest
1516 steps :
1617 - name : Checkout
1718 uses : actions/checkout@v4
1819 with :
1920 submodules : recursive
21+ fetch-depth : 0
22+ persist-credentials : true
23+ clean : false
2024
2125 - name : Sync Skia dependencies
2226 run : |
3438 path : artifacts/headers
3539
3640 windows :
41+ if : false
3742 name : Windows (${{ matrix.arch }})
3843 runs-on : windows-latest
3944 strategy :
4651 uses : actions/checkout@v4
4752 with :
4853 submodules : recursive
54+ fetch-depth : 0
55+ persist-credentials : true
56+ clean : false
4957
5058 - name : Sync Skia dependencies
5159 shell : pwsh
@@ -70,18 +78,25 @@ jobs:
7078 runs-on : macos-latest
7179 strategy :
7280 matrix :
73- arch : [x64, arm64]
81+ arch :
82+ - x64
83+ # - arm64 # disabled for now
84+
7485 steps :
7586 - name : Checkout
7687 uses : actions/checkout@v4
7788 with :
7889 submodules : recursive
90+ fetch-depth : 0
91+ persist-credentials : true
92+ clean : false
7993
8094 - name : Sync Skia dependencies
8195 run : |
8296 export PATH="${GITHUB_WORKSPACE}/depot_tools:${PATH}"
8397 cd skia
8498 python3 tools/git-sync-deps
99+ find . |grep reldir.txt
85100
86101 - name : Build ${{ matrix.arch }}
87102 run : python3 scripts/build.py macos ${{ matrix.arch }}
You can’t perform that action at this time.
0 commit comments