Compare commits

...

2 Commits

Author SHA1 Message Date
04c63c5af9 ci: parallel test and build
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
2024-09-24 22:11:09 +01:00
a7ca8aecac ci: make ci_publish script exec 2024-09-24 22:10:05 +01:00
2 changed files with 7 additions and 1 deletions

View File

@ -10,10 +10,14 @@ when:
steps:
- name: build (rust)
- name: test
image: rust:1.81-bookworm
commands:
- cargo test --verbose --all
- name: build (wasm_pack)
image: rust:1.81-bookworm
commands:
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- (cd um_wasm && wasm-pack build --release --target web --out-dir ../um_wasm_loader/pkg)
@ -22,6 +26,8 @@ steps:
environment:
NPM_TOKEN:
from_secret: NPM_TOKEN
depends_on:
- "build (wasm_pack)"
commands:
- corepack enable
- cd um_wasm_loader

0
um_wasm_loader/ci_publish.sh Normal file → Executable file
View File