Quellcode durchsuchen

Remove cortex-m-semihosting CI

The current repository CI was copied from cortex-m-semihosting, so it is
not relevant to this one. In the future, it may be worthwhile to add
some proper CI for this repo.
Fawaz Tirmizi vor 2 Jahren
Ursprung
Commit
f4c48301dd
2 geänderte Dateien mit 0 neuen und 26 gelöschten Zeilen
  1. 0 12
      ci/install.sh
  2. 0 14
      ci/script.sh

+ 0 - 12
ci/install.sh

@@ -1,12 +0,0 @@
-set -euxo pipefail
-
-main() {
-    if [ $TARGET = thumbv7m-none-eabi ]; then
-        cargo install --list | grep xargo || \
-            cargo install xargo
-        rustup component list | grep 'rust-src.*installed' || \
-            rustup component add rust-src
-    fi
-}
-
-main

+ 0 - 14
ci/script.sh

@@ -1,14 +0,0 @@
-set -euxo pipefail
-
-main() {
-    local cargo=
-    if [ $TARGET = thumbv7m-none-eabi ]; then
-        cargo=xargo
-    else
-        cargo=cargo
-    fi
-
-    $cargo check --target $TARGET
-}
-
-main