Skip to content
Snippets Groups Projects
.travis.yml 389 B
Newer Older
language: rust
env:
  -
  - TARGET=aarch64-unknown-linux-gnu
  - TARGET=x86_64-unknown-redox
install:
  - if [ $TARGET == "aarch64-unknown-linux-gnu" ]; then sudo apt-get install gcc-aarch64-linux-gnu; fi
before_script:
  - rustup component add rustfmt-preview
  - if [ -n "$TARGET" ]; then rustup target add $TARGET; fi
Jeremy Soller's avatar
Jeremy Soller committed
  - ./ci.sh
notifications:
  email: false