-
Notifications
You must be signed in to change notification settings - Fork 131
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
Remove Xcode dependency check #793
Conversation
go.mod
Outdated
@@ -3,31 +3,19 @@ module github.com/bitrise-io/bitrise | |||
go 1.16 | |||
|
|||
require ( | |||
github.com/Masterminds/semver v1.5.0 // indirect |
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.
There are so many changed lines because I ran go mod tidy
on the project.
Documentation says that only xcode is supported, but in fact there seems to be also the code supporting anything else. So the check only dependency feature is really usable for any tool. Shouldn't only support for the special case |
Removes the Xcode dependency check from the step.yml model. We consider this an unnecessary check nowadays as the Bitrise VMs definitely have Xcode installed and expect local environments to have it installed too.