Skip to content
Snippets Groups Projects
init.sh 248 B
#!/usr/bin/env bash

set -e

echo "*** Initializing WASM build environment"

if [ -z $CI_PROJECT_NAME ] ; then
   rustup install nightly-2020-10-05
   rustup update stable
fi

rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-05