ba9cc102e2
- Removes the slow "updating crates.io index, updating git" at start of the job. - Avoids CI being randomly slower if a widely-used dep (like serde) gets bumped causing rebuilding everything.
34 lines
956 B
Bash
Executable File
34 lines
956 B
Bash
Executable File
#!/bin/bash
|
|
## on push branch~=gh-readonly-queue/main/.*
|
|
## on pull_request
|
|
|
|
set -euo pipefail
|
|
|
|
export RUSTUP_HOME=/ci/cache/rustup
|
|
export CARGO_HOME=/ci/cache/cargo
|
|
export CARGO_TARGET_DIR=/ci/cache/target
|
|
if [ -f /ci/secrets/teleprobe-token.txt ]; then
|
|
echo Got teleprobe token!
|
|
export TELEPROBE_HOST=https://teleprobe.embassy.dev
|
|
export TELEPROBE_TOKEN=$(cat /ci/secrets/teleprobe-token.txt)
|
|
export TELEPROBE_CACHE=/ci/cache/teleprobe_cache.json
|
|
fi
|
|
|
|
# needed for "dumb HTTP" transport support
|
|
# used when pointing stm32-metapac to a CI-built one.
|
|
export CARGO_NET_GIT_FETCH_WITH_CLI=true
|
|
|
|
# Restore lockfiles
|
|
if [ -f /ci/cache/lockfiles.tar ]; then
|
|
echo Restoring lockfiles...
|
|
tar xf /ci/cache/lockfiles.tar
|
|
fi
|
|
|
|
hashtime restore /ci/cache/filetime.json || true
|
|
hashtime save /ci/cache/filetime.json
|
|
|
|
./ci.sh
|
|
|
|
# Save lockfiles
|
|
echo Saving lockfiles...
|
|
find . -type f -name Cargo.lock -exec tar -cf /ci/cache/lockfiles.tar '{}' \+ |