mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
41 lines
619 B
YAML
41 lines
619 B
YAML
language: rust
|
|
|
|
matrix:
|
|
include:
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
rust: nightly
|
|
|
|
- env: TARGET=thumbv6m-none-eabi
|
|
rust: nightly
|
|
|
|
- env: TARGET=thumbv7m-none-eabi
|
|
rust: nightly
|
|
|
|
- env: TARGET=thumbv7em-none-eabi
|
|
rust: nightly
|
|
|
|
- env: TARGET=thumbv7em-none-eabihf
|
|
rust: nightly
|
|
|
|
before_install: set -e
|
|
|
|
install:
|
|
- bash ci/install.sh
|
|
- export PATH="$PATH:$PWD/gcc/bin"
|
|
|
|
script:
|
|
- bash ci/script.sh
|
|
|
|
after_success:
|
|
- bash ci/after-success.sh
|
|
|
|
after_script: set +e
|
|
|
|
branches:
|
|
only:
|
|
- staging
|
|
- trying
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|