diff options
Diffstat (limited to 'ci/script.sh')
-rw-r--r-- | ci/script.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ci/script.sh b/ci/script.sh index 82b3a1d..5b52fea 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -1,14 +1,12 @@ set -ex main() { - cargo generate-lockfile - case $TARGET in thumbv*-none-eabi*) - cross build --target $TARGET + cargo check --target $TARGET ;; *) - cross test --target $TARGET + cargo test --target $TARGET ;; esac } |