Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/darwin-ci/guest/job.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# Runs inside the per-job guest. Expects ~/job.env (exported by the command hook) and the checkout at ~/work.
set -u
export PATH=/usr/local/bin:/opt/homebrew/bin:/opt/rust/bin:$PATH
# bootstrap.sh installs rustup into /opt/rust and only exports these from the login profile, which this script
# does not source; without them the proxies in /opt/rust/bin look for a toolchain in ~/.rustup and find none.
export RUSTUP_HOME=/opt/rust CARGO_HOME=/opt/rust
export BUILDKITE_BUILD_CHECKOUT_PATH=$HOME/work
set -a; source ~/job.env; set +a
cd ~/work
Expand Down