Switch to Bender for CI.

This commit is contained in:
Dario Nieuwenhuis
2023-05-26 23:05:18 +02:00
parent bab03a3927
commit 7b2a39a6fb
3 changed files with 21 additions and 81 deletions

21
.github/ci/rust.sh vendored Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
## on push branch=main
## on push branch~=gh-readonly-queue/main/.*
## on pull_request
set -euo pipefail
echo Hello World!
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_TOKEN=$(cat /ci/secrets/teleprobe-token.txt)
fi
hashtime restore /ci/cache/filetime.json || true
hashtime save /ci/cache/filetime.json
./ci.sh