ci: add stable build, add tests.

This commit is contained in:
Dario Nieuwenhuis
2023-05-29 19:46:46 +02:00
parent 46961cfdf7
commit 421ee4dfbf
4 changed files with 44 additions and 5 deletions

18
.github/ci/build.sh vendored Executable file
View File

@ -0,0 +1,18 @@
#!/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_TOKEN=$(cat /ci/secrets/teleprobe-token.txt)
fi
hashtime restore /ci/cache/filetime.json || true
hashtime save /ci/cache/filetime.json
./ci.sh