mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-26 11:22:40 +00:00
8d31bdc22f
Xcode was 12 instead of 12.2 and therefore OpenSSL was failing on Apple Silicon arch (MacOSX arm64).
17 lines
453 B
YAML
17 lines
453 B
YAML
language: objective-c
|
|
osx_image: xcode12.2
|
|
xcode_workspace: Passepartout.xcworkspace
|
|
xcode_scheme: PassepartoutCore-iOS
|
|
xcode_destination: platform=iOS Simulator,OS=12.4,name=iPhone Xs Max
|
|
cache:
|
|
bundler: true
|
|
cocoapods: true
|
|
branches:
|
|
only:
|
|
- master
|
|
- fix-travis-ci
|
|
install:
|
|
- bundle install --jobs=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}
|
|
- bundle exec pod repo update
|
|
- travis_wait 40 bundle exec pod install --verbose
|