-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swift 4.2 Update #26
Swift 4.2 Update #26
Conversation
malinkas86
commented
Oct 22, 2018
- Change the source to support Swift 4.2
* Change the source to support Swift 4.2
podfile: Example/Podfile | ||
|
||
before_install: | ||
- gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet | ||
|
||
script: | ||
- set -o pipefail && xcodebuild test -project Marker/Marker.xcodeproj -scheme Marker-iOS -destination 'name=iPhone 7,OS=11.0' | xcpretty | ||
- set -o pipefail && xcodebuild test -project Marker/Marker.xcodeproj -scheme Marker-iOS -destination 'name=iPhone 8,OS=12.0' | xcpretty |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can specify the latest version of the OS instead of a specific version number, that might help the maintainability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find the syntax for it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find it either, never mind then, I remember using a syntax like OS=latest
but I can't remember on top of my head.