diff options
-rw-r--r-- | ci/install.sh | 2 | ||||
-rw-r--r-- | ci/script.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index 4c39fd3..561e9c2 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -1,7 +1,7 @@ set -ex main() { - return + cargo install xargo || true } # NOTE(TRAVIS_BRANCH) Travis is configured to only build *pushes* (not PRs) diff --git a/ci/script.sh b/ci/script.sh index 5b52fea..080e756 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -3,7 +3,7 @@ set -ex main() { case $TARGET in thumbv*-none-eabi*) - cargo check --target $TARGET + xargo check --target $TARGET ;; *) cargo test --target $TARGET |