aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-semihosting/ci/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cortex-m-semihosting/ci/install.sh')
-rw-r--r--cortex-m-semihosting/ci/install.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/cortex-m-semihosting/ci/install.sh b/cortex-m-semihosting/ci/install.sh
deleted file mode 100644
index e63e805..0000000
--- a/cortex-m-semihosting/ci/install.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-set -euxo pipefail
-
-main() {
- if [ $TARGET != x86_64-unknown-linux-gnu ]; then
- rustup target add $TARGET
- fi
-
- mkdir gcc
-
- curl -L https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2?revision=bc2c96c0-14b5-4bb4-9f18-bceb4050fee7?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,7-2018-q2-update | tar --strip-components=1 -C gcc -xj
-}
-
-main