-
Notifications
You must be signed in to change notification settings - Fork 80
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
Update .spi.yml #1297
Update .spi.yml #1297
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,5 @@ | ||
version: 1 | ||
builder: | ||
configs: | ||
- platform: macosXcodebuild | ||
target: AWSSTS | ||
- platform: ios | ||
target: AWSSTS | ||
- platform: linux | ||
swift_version: '5.7' | ||
image: registry.gitlab.com/finestructure/spi-images:basic-5.7-latest | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
target: AWSSTS | ||
- platform: linux | ||
swift_version: '5.8' | ||
image: registry.gitlab.com/finestructure/spi-images:basic-5.8-latest | ||
target: AWSSTS | ||
- platform: linux | ||
swift_version: '5.9' | ||
image: registry.gitlab.com/finestructure/spi-images:basic-5.9-latest | ||
target: AWSSTS | ||
|
||
- target: AWSSTS | ||
scheme: AWSSTS | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Overall, this can just be condensed to setting both |
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.
macosXcodebuild
doesn't support thetarget
flag, it needsscheme
instead. (--target
is aswift build
parameter,--scheme
anxcodebuild
parameter. We should perhaps have collapsed them into one but it wasn't clear at the time if they'd be used synonymously.)