We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd08081 commit 27b4d6fCopy full SHA for 27b4d6f
scripts/setup-linux.sh
@@ -2,3 +2,12 @@
2
sudo apt -y update
3
sudo apt-get install -y protobuf-compiler libseccomp-dev
4
5
+echo "setting up rust"
6
+sudo rustup toolchain install 1.74 --component clippy --component rustfmt --no-self-update
7
+sudo rustup default 1.74
8
+sudo rustup target add wasm32-wasi && rustup target add wasm32-unknown-unknown
9
+
10
+## setup tinygo. required for building test spin app
11
+echo "setting up tinygo"
12
+wget https://github.com/tinygo-org/tinygo/releases/download/v0.30.0/tinygo_0.30.0_amd64.deb
13
+sudo dpkg -i tinygo_0.30.0_amd64.deb
0 commit comments