diff options
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -14,13 +14,15 @@ environment: tasks: - rustup: | - export PATH="$PATH:$HOME/.cargo/bin" - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh -s -- --profile minimal --quiet -y + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --quiet -y + source $HOME/.cargo/env curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - test: | + source $HOME/.cargo/env cd genpass make test - deploy: | + source $HOME/.cargo/env cd genpass make sshopts="ssh -o StrictHostKeyChecking=no" |