zircles-ios/.travis.yml

23 lines
738 B
YAML
Raw Normal View History

2020-06-16 12:45:53 -07:00
osx_image: xcode11.5
language: swift
2020-06-17 07:03:55 -07:00
addons:
homebrew:
packages:
- rustup-init
- sourcery
- curl
2020-06-16 14:13:00 -07:00
env:
ZCASH_NETWORK_ENVIRONMENT : TESTNET
2020-06-17 07:03:55 -07:00
2020-06-16 12:45:53 -07:00
before_install:
2020-06-16 14:40:32 -07:00
- gem install cocoapods # Since Travis is not always on latest version
- pod install
2020-06-17 07:03:55 -07:00
- ${TRAVIS_BUILD_DIR}/Scripts/travis/rust_setup.sh
install:
- curl https://z.cash/downloads/sapling-output.params > ${TRAVIS_BUILD_DIR}/Zircles/sapling-output.params
- curl https://z.cash/downloads/sapling-output.params > ${TRAVIS_BUILD_DIR}/Zircles/sapling-spend.params
2020-06-16 14:40:32 -07:00
script:
2020-06-17 11:53:39 -07:00
- travis_wait 30 xcodebuild test -quiet -UseModernBuildSystem=NO -workspace Zircles.xcworkspace -scheme Zircles -destination 'platform=iOS Simulator,name=iPhone 8,OS=13.5' ONLY_ACTIVE_ARCH=YES
2020-06-17 07:03:55 -07:00