aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2020-08-28 20:34:31 +0000
committerGravatar GitHub <noreply@github.com> 2020-08-28 20:34:31 +0000
commit54f541c87b0723ad8976f978b2233d56100702b6 (patch)
treeb284d3ef162113aeae169228a5b294a1c33f8234 /ci/install.sh
parent36886f19b6ca0ac3b30ddf8543d330a445506057 (diff)
parent0a118397332c10080c48d76e7416ce854a0260ba (diff)
downloadcortex-m-54f541c87b0723ad8976f978b2233d56100702b6.tar.gz
cortex-m-54f541c87b0723ad8976f978b2233d56100702b6.tar.zst
cortex-m-54f541c87b0723ad8976f978b2233d56100702b6.zip
Merge #261
261: Replace shell scripts with integration test r=therealprof a=jonas-schievink * Removes the Clippy check from CI (I don't think we should fail CI when Clippy finds something, it seems better to use the GitHub Actions plugin) * Tests all targets (thumbv8m.base was missing) * Bumps MSRV to 1.35.0 (to get the thumbv8m.base libcore) Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
Diffstat (limited to 'ci/install.sh')
-rw-r--r--ci/install.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/ci/install.sh b/ci/install.sh
deleted file mode 100644
index fb3e52d..0000000
--- a/ci/install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-set -euxo pipefail
-
-main() {
- case $TARGET in
- thumbv*-none-eabi*)
- rustup target add $TARGET
- ;;
- esac
-}
-
-main