script.sh 246 B

12345678910111213
  1. #!/usr/bin/env bash
  2. set -euxo pipefail
  3. cargo check --target $TARGET
  4. if [ $TRAVIS_RUST_VERSION = nightly ]; then
  5. cargo check --target $TARGET --features inline-asm
  6. fi
  7. if [ $TARGET = x86_64-unknown-linux-gnu ]; then
  8. ./check-blobs.sh
  9. fi