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 d2fcce9 commit 4a50052Copy full SHA for 4a50052
.github/workflows/cmake-ci.yml
@@ -39,3 +39,23 @@ jobs:
39
40
- name: Test
41
run: make test-cmake
42
+
43
+ - name: Upload WebGPU artifacts (macOS)
44
+ if: matrix.os == 'macos-latest'
45
+ uses: actions/upload-artifact@v4
46
+ with:
47
+ name: webgpu-macos-arm64
48
+ path: |
49
+ external/dawn/build_mac_arm64/src/dawn/native/libwebgpu_dawn.dylib
50
+ external/dawn/build_mac_arm64/gen/include/dawn/webgpu.h
51
+ retention-days: 7
52
53
+ - name: Upload WebGPU artifacts (Linux)
54
+ if: matrix.os == 'ubuntu-latest'
55
56
57
+ name: webgpu-linux-x86_64
58
59
+ external/dawn/build_unix_x86_64/src/dawn/native/libwebgpu_dawn.so
60
+ external/dawn/build_unix_x86_64/gen/include/dawn/webgpu.h
61
0 commit comments