Skip to content

Commit d3fba3e

Browse files
committed
add github action to demonstrate build-whl
1 parent 1e95ea8 commit d3fba3e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build-whl.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)