From 10b29d3a4fc43503c25fb2c7ffbeaad44c2fb103 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Mon, 31 Aug 2020 23:16:21 +0200 Subject: Import semihosting crates as-is --- cortex-m-semihosting/ci/script.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cortex-m-semihosting/ci/script.sh (limited to 'cortex-m-semihosting/ci/script.sh') diff --git a/cortex-m-semihosting/ci/script.sh b/cortex-m-semihosting/ci/script.sh new file mode 100644 index 0000000..dc0be46 --- /dev/null +++ b/cortex-m-semihosting/ci/script.sh @@ -0,0 +1,15 @@ +set -euxo pipefail + +main() { + cargo check --target $TARGET + + if [ $TRAVIS_RUST_VERSION = nightly ]; then + cargo check --target $TARGET --features inline-asm + fi + + if [ $TARGET = x86_64-unknown-linux-gnu ]; then + ./check-blobs.sh + fi +} + +main -- cgit v1.2.3