blob: 665539923d908c6d3f094530ca1596435b8b45a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
image: alpine:3
pages:
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- apk add npm make curl build-base
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --quiet -y
- curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
script:
- make
artifacts:
paths:
- public
only:
refs:
- master
|