Skip to content

Commit f8dec61

Browse files
committed
wat
1 parent e447830 commit f8dec61

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ on:
1010

1111
jobs:
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: |
@@ -34,6 +38,7 @@ jobs:
3438
path: artifacts/headers
3539

3640
windows:
41+
if: false
3742
name: Windows (${{ matrix.arch }})
3843
runs-on: windows-latest
3944
strategy:
@@ -46,6 +51,9 @@ jobs:
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 }}

0 commit comments

Comments
 (0)