2023-05-26 21:05:18 +00:00
|
|
|
#!/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
|
2023-12-21 13:57:49 +00:00
|
|
|
mv rust-toolchain-nightly.toml rust-toolchain.toml
|
2023-05-26 21:05:18 +00:00
|
|
|
|
2023-09-14 16:04:43 +00:00
|
|
|
# needed for "dumb HTTP" transport support
|
|
|
|
# used when pointing stm32-metapac to a CI-built one.
|
|
|
|
export CARGO_NET_GIT_FETCH_WITH_CLI=true
|
|
|
|
|
2023-11-21 15:53:28 +00:00
|
|
|
# Restore lockfiles
|
|
|
|
if [ -f /ci/cache/lockfiles.tar ]; then
|
|
|
|
echo Restoring lockfiles...
|
|
|
|
tar xf /ci/cache/lockfiles.tar
|
|
|
|
fi
|
|
|
|
|
2023-05-26 21:05:18 +00:00
|
|
|
hashtime restore /ci/cache/filetime.json || true
|
|
|
|
hashtime save /ci/cache/filetime.json
|
|
|
|
|
2023-12-21 13:57:49 +00:00
|
|
|
./ci-nightly.sh
|
2023-11-21 15:53:28 +00:00
|
|
|
|
|
|
|
# Save lockfiles
|
|
|
|
echo Saving lockfiles...
|
2023-12-14 15:30:45 +00:00
|
|
|
find . -type f -name Cargo.lock -exec tar -cf /ci/cache/lockfiles.tar '{}' \+
|