From 421ee4dfbfbbdc007265498d4f529687c16d89af Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Mon, 29 May 2023 19:46:46 +0200 Subject: ci: add stable build, add tests. --- .github/ci/rust.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 .github/ci/rust.sh (limited to '.github/ci/rust.sh') diff --git a/.github/ci/rust.sh b/.github/ci/rust.sh deleted file mode 100755 index db1fc8538..000000000 --- a/.github/ci/rust.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -## 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 -- cgit