xi-mac/.travis.yml
Raph Levien af0636c92e Convert to Swift 3
A combination of using the automatic migration script and manual
fixup. A lot of uses of "AnyObject" were changed to "Any". It seems
to work, but there are still some warnings (unused values).

Closes #144.
2017-02-08 20:41:45 -08:00

26 lines
509 B
YAML

language: rust
osx_image: xcode8.2
rust:
- stable
- nightly
os:
- linux
- osx
matrix:
allow_failures:
- rust: nightly
cache:
directories:
- $HOME/.cargo
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcodebuild; fi
- cd rust
- export CARGO_TARGET_DIR=/tmp/target
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then cargo build && cargo build --manifest-path syntect-plugin/Cargo.toml; fi
- for MANIFEST in Cargo.toml */Cargo.toml; do cargo test --manifest-path $MANIFEST; done