mentat/.travis.yml

71 lines
2.7 KiB
YAML
Raw Permalink 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:
2018-08-08 14:02:56 +00:00
# - 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:
# - ./scripts/cargo_test.sh
# 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:
# - ./scripts/cargo_test.sh
# 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:
# - ./scripts/cargo_test.sh
# 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:
# - ./scripts/cargo_test.sh
# 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 16:00:36 +00:00
# Cargo-lipo needs to be Beta version available on master and not crates version to handle building in subdirectories
2018-08-08 11:07:25 +00:00
- cargo install --git https://github.com/TimNN/cargo-lipo
2018-08-08 14:52:30 +00:00
- instruments -s devices
2018-08-07 14:04:38 +00:00
script:
2018-08-08 14:52:30 +00:00
- >
cd ffi &&
cargo lipo --release &&
cd ..
2018-08-08 12:57:59 +00:00
- cd sdks/swift/Mentat
2018-08-08 16:00:36 +00:00
- xcodebuild -configuration Debug -scheme "Mentat Debug" -sdk iphonesimulator test -destination 'platform=iOS Simulator,name=iPhone X,OS=11.4'
2018-08-08 10:21:08 +00:00
- cd ../../..