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 b9eaa09 commit 77c879aCopy full SHA for 77c879a
images/ubuntu/image.pkr.hcl
@@ -30,6 +30,7 @@ build {
30
"./scripts/install-packages.sh",
31
"./scripts/install-gha-runner.sh",
32
"./scripts/install-awscli.sh",
33
+ "./scripts/install-rust.sh",
34
"./scripts/setup-ssh.sh",
35
"./scripts/setup-disk-resize.sh",
36
"./scripts/setup-grub.sh",
images/ubuntu/scripts/install-rust.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+set -euo pipefail
4
+IFS=$'\n\t'
5
6
+# CI expects a Rust toolchain to be installed.
7
+DEBIAN_FRONTEND=noninteractive sudo apt install rustup -y
8
+sudo -u gha rustup toolchain install stable --profile minimal
0 commit comments