Skip to content

Commit 63403d8

Browse files
authored
Merge branch 'main' into fix-build2
2 parents 447a83a + b9d8eb1 commit 63403d8

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/build-dawn.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,30 @@ jobs:
88
uses: actions/checkout@v2
99
with:
1010
submodules: true
11-
11+
- name: Initialize Dawn's abseil-cpp submodule
12+
run: |
13+
cd externals/dawn
14+
git submodule update --init third_party/abseil-cpp
1215
- name: Setup Android NDK
1316
id: setup-ndk
1417
uses: nttld/setup-ndk@v1
1518
with:
1619
ndk-version: r26d
17-
1820
- name: Set ANDROID_NDK
1921
run: echo "ANDROID_NDK=$ANDROID_HOME/ndk-bundle" >> $GITHUB_ENV
20-
2122
- name: Setup Ninja
2223
uses: seanmiddleditch/gha-setup-ninja@master
23-
2424
- uses: actions/setup-node@v3
2525
with:
2626
cache: 'yarn'
2727
cache-dependency-path: yarn.lock
28-
2928
- name: Install Package
3029
run: yarn install --frozen-lockfile
31-
3230
- name: Build Dawn
3331
working-directory: packages/webgpu
3432
env:
3533
ANDROID_NDK: ${{ steps.setup-ndk.outputs.ndk-path }}
3634
run: yarn build-dawn
37-
3835
- name: Upload artifacts - Dawn Library Files
3936
if: github.ref == 'refs/heads/main'
4037
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)