diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-05-29 19:46:46 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-05-29 19:51:06 +0200 |
| commit | 421ee4dfbfbbdc007265498d4f529687c16d89af (patch) | |
| tree | 82e888ad5ea0af46fd33188fdf923e3d2ecd0a1a /.github/ci/build-stable.sh | |
| parent | 46961cfdf72a3b5d54b241a41d9f2496c6dc6229 (diff) | |
ci: add stable build, add tests.
Diffstat (limited to '.github/ci/build-stable.sh')
| -rwxr-xr-x | .github/ci/build-stable.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/ci/build-stable.sh b/.github/ci/build-stable.sh new file mode 100755 index 000000000..0dadd6102 --- /dev/null +++ b/.github/ci/build-stable.sh | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | ## on push branch~=gh-readonly-queue/main/.* | ||
| 3 | ## on pull_request | ||
| 4 | |||
| 5 | set -euo pipefail | ||
| 6 | |||
| 7 | export RUSTUP_HOME=/ci/cache/rustup | ||
| 8 | export CARGO_HOME=/ci/cache/cargo | ||
| 9 | export CARGO_TARGET_DIR=/ci/cache/target | ||
| 10 | |||
| 11 | hashtime restore /ci/cache/filetime.json || true | ||
| 12 | hashtime save /ci/cache/filetime.json | ||
| 13 | |||
| 14 | sed -i 's/channel.*/channel = "stable"/g' rust-toolchain.toml | ||
| 15 | |||
| 16 | ./ci_stable.sh | ||
