diff options
author | 2018-08-26 23:57:12 +0000 | |
---|---|---|
committer | 2018-08-26 23:57:12 +0000 | |
commit | 478418c0eb38b9311e574d18d12cac69d3044e63 (patch) | |
tree | 0c3eed1a715253acf3378da4c731781fb72bd0e3 /ci/script.sh | |
parent | dfd0349772763e07b16bcaa13f536bfa381044b8 (diff) | |
parent | 945e2683f89a031b44b65d25e1917f3157c49fa1 (diff) | |
download | cortex-m-478418c0eb38b9311e574d18d12cac69d3044e63.tar.gz cortex-m-478418c0eb38b9311e574d18d12cac69d3044e63.tar.zst cortex-m-478418c0eb38b9311e574d18d12cac69d3044e63.zip |
Merge #108
108: remove build dependency on arm-none-eabi-gcc r=adamgreig a=japaric
by shipping pre-assembled object files. This is the same approach as the
one used in rust-embedded/cortex-m#95
r? @rust-embedded/cortex-m (anyone)
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'ci/script.sh')
-rw-r--r-- | ci/script.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ci/script.sh b/ci/script.sh index 9fd46a3..d1d9279 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -23,9 +23,10 @@ main() { cargo test --target $TARGET ;; esac + + if [ $TARGET = x86_64-unknown-linux-gnu ]; then + ./check-blobs.sh + fi } -# NOTE See the NOTE in `install.sh` -if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_EVENT_TYPE = cron ]; then - main -fi +main |