roc/www/netlify.sh
2022-10-17 17:40:35 +02:00

18 lines
422 B
Bash

#!/usr/bin/env bash
# Runs on every Netlify build, to set up the Netlify server.
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -euxo pipefail
rustup update
rustup default stable
ZIG_DIRNAME="zig-linux-x86_64-0.9.1"
wget https://ziglang.org/download/0.9.1/${ZIG_DIRNAME}.tar.xz
tar --extract --xz --file=${ZIG_DIRNAME}.tar.xz
PATH="$(pwd)/${ZIG_DIRNAME}:${PATH}"
export PATH
bash build.sh