mentat/.travis.yml

71 lines
2.5 KiB
YAML
Raw Normal View History

matrix:
2018-07-18 16:19:03 +00:00
fast_finish: true
allow_failures:
- rust: nightly
2018-07-18 16:19:03 +00:00
include:
- language: rust
# We use OSX so that we can get a reasonably up to date version of SQLCipher.
# (The version in Travis's default Ubuntu Trusty is much too old).
os: osx
before_install:
- brew install sqlcipher --with-fts
rust: 1.25.0 # Must align with `build/version.rs`.
script:
2018-07-19 14:09:59 +00:00
- ./scripts/cargo_test.sh
2018-07-18 16:19:03 +00:00
after_success:
- |
if [[ "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" ]]; then
cargo doc &&
echo "<meta http-equiv=refresh content=0;url=mentat/index.html>" > target/doc/index.html &&
git clone https://github.com/davisp/ghp-import.git &&
./ghp-import/ghp_import.py -n -p -f -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc
fi
cache: cargo
- language: rust
# We use OSX so that we can get a reasonably up to date version of SQLCipher.
# (The version in Travis's default Ubuntu Trusty is much too old).
os: osx
before_install:
- brew install sqlcipher --with-fts
rust: stable
script:
2018-07-19 14:09:59 +00:00
- ./scripts/cargo_test.sh
2018-07-18 16:19:03 +00:00
cache: cargo
- language: rust
# We use OSX so that we can get a reasonably up to date version of SQLCipher.
# (The version in Travis's default Ubuntu Trusty is much too old).
os: osx
before_install:
- brew install sqlcipher --with-fts
rust: beta
script:
2018-07-19 14:09:59 +00:00
- ./scripts/cargo_test.sh
2018-07-18 16:19:03 +00:00
cache: cargo
- language: rust
# We use OSX so that we can get a reasonably up to date version of SQLCipher.
# (The version in Travis's default Ubuntu Trusty is much too old).
os: osx
before_install:
- brew install sqlcipher --with-fts
rust: nightly
script:
2018-07-19 14:09:59 +00:00
- ./scripts/cargo_test.sh
2018-07-18 16:19:03 +00:00
cache: cargo
2018-08-07 14:04:38 +00:00
- language: rust
dist: trusty
rust: stable
os: osx
install:
2018-08-07 14:07:24 +00:00
- rustup target add aarch64-apple-ios armv7-apple-ios armv7s-apple-ios x86_64-apple-ios i386-apple-ios
2018-08-08 11:07:25 +00:00
- cargo install --git https://github.com/TimNN/cargo-lipo
2018-08-08 10:58:41 +00:00
- cargo lipo --version
2018-08-07 14:04:38 +00:00
script:
2018-08-08 10:21:08 +00:00
- cd ffi
- cargo lipo --release
- cd ..
2018-08-08 12:57:59 +00:00
- cd sdks/swift/Mentat
2018-08-08 13:41:37 +00:00
- echo "" | xcversion simulators --install='iOS 10.3.1'
2018-08-08 13:32:31 +00:00
- instruments -s devices
- xcodebuild -configuration Debug -scheme "Mentat Debug" -sdk iphonesimulator test -destination 'platform=jibberish' | xcpretty
2018-08-08 10:21:08 +00:00
- cd ../../..