mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
80 lines
2 KiB
YAML
80 lines
2 KiB
YAML
language: rust
|
|
|
|
cache: cargo
|
|
|
|
matrix:
|
|
include:
|
|
# Linux 32bit
|
|
- env: TARGET=i686-unknown-linux-gnu
|
|
os: linux
|
|
rust: nightly
|
|
addons:
|
|
apt:
|
|
# Cross compiler and cross compiled C libraries
|
|
packages: &i686_packages
|
|
- gcc-multilib
|
|
- env: TARGET=i686-unknown-linux-gnu
|
|
os: linux
|
|
rust: stable
|
|
addons:
|
|
apt:
|
|
packages: *i686_packages
|
|
- env: TARGET=i686-unknown-linux-gnu
|
|
os: linux
|
|
rust: 1.28.0
|
|
addons:
|
|
apt:
|
|
packages: *i686_packages
|
|
|
|
# Linux 64bit
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
os: linux
|
|
rust: nightly
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
os: linux
|
|
rust: stable
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
os: linux
|
|
rust: 1.28.0
|
|
|
|
# macOS
|
|
- env: TARGET=x86_64-apple-darwin
|
|
os: osx
|
|
rust: nightly
|
|
- env: TARGET=x86_64-apple-darwin
|
|
os: osx
|
|
rust: stable
|
|
- env: TARGET=x86_64-apple-darwin
|
|
os: osx
|
|
rust: 1.28.0
|
|
|
|
# iOS
|
|
- env: TARGET=x86_64-apple-ios
|
|
os: osx
|
|
rust: nightly
|
|
- env: TARGET=x86_64-apple-ios
|
|
os: osx
|
|
rust: stable
|
|
- env: TARGET=x86_64-apple-ios
|
|
os: osx
|
|
rust: 1.28.0
|
|
|
|
install:
|
|
- rustup self update
|
|
- rustup target add $TARGET; true
|
|
|
|
script:
|
|
- cargo build --target $TARGET --verbose
|
|
- cargo build --target $TARGET --features serde --verbose
|
|
- cargo build --target $TARGET --features icon_loading --verbose
|
|
# Running iOS apps on OSX requires the simulator so we skip that for now
|
|
- if [ "$TARGET" != "x86_64-apple-ios" ]; then cargo test --target $TARGET --verbose; fi
|
|
- if [ "$TARGET" != "x86_64-apple-ios" ]; then cargo test --target $TARGET --features serde --verbose; fi
|
|
- if [ "$TARGET" != "x86_64-apple-ios" ]; then cargo test --target $TARGET --features icon_loading --verbose; fi
|
|
|
|
after_success:
|
|
- |
|
|
[ $TRAVIS_BRANCH = master ] &&
|
|
[ $TRAVIS_PULL_REQUEST = false ] &&
|
|
cargo publish --token ${CRATESIO_TOKEN}
|