mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
399 B
YAML
33 lines
399 B
YAML
language: rust
|
|
|
|
matrix:
|
|
include:
|
|
# MSRV
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
rust: 1.30.0
|
|
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
rust: stable
|
|
|
|
before_install: set -e
|
|
|
|
install:
|
|
- sh ci/install.sh
|
|
|
|
script:
|
|
- sh ci/script.sh
|
|
|
|
after_script: set +e
|
|
|
|
cache: cargo
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- staging
|
|
- trying
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|