-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (42 loc) · 1.49 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Rust WASM CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup env
run: rustup toolchain install nightly && rustup default nightly && rustup target add wasm32-unknown-emscripten
- name: Install EMCC
run: git clone https://github.com/emscripten-core/emsdk.git && cd ./emsdk && ./emsdk install latest && ./emsdk activate latest
- name: Build
run: cd ./emsdk && source emsdk_env.sh && cd .. && ./build_wasm.sh
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Clean Output
run: cp index.html ./www && cp ./target/wasm32-unknown-emscripten/release/spline-drawer.d ./www && cp ./target/wasm32-unknown-emscripten/release/spline-drawer.js ./www && cp ./target/wasm32-unknown-emscripten/release/spline_drawer.wasm ./www
- name: Upload Artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./www"
deploy-coverage:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
# environment created automatically by GitHub
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2