aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 1aeb1fad1bcdd7ec34211ad218ac7f1f6891faca (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:
      - www/dist
  only:
    refs:
      - master