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 1e95ea8 commit d3fba3eCopy full SHA for d3fba3e
.github/workflows/build-whl.yml
@@ -0,0 +1,17 @@
1
+---
2
+name: build Wheel
3
+# yamllint disable rule:truthy
4
+on: [push, workflow_dispatch]
5
+# yamllint enable
6
+
7
+jobs:
8
+ build-whl:
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ COMPOSE_FILE: docker-compose.yml
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: build container
15
+ run: docker compose build component-build-whl
16
+ - name: build wasm
17
+ run: docker compose up component-build-whl --exit-code-from component-build-whl
0 commit comments