-
Notifications
You must be signed in to change notification settings - Fork 12
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
Routine tooling upgrade #210
Conversation
Also ensure we always use at least that version.
Something changed somewhere such that passing `'ios test'` to the command would result in Fastlane looking for a lane called `ios test` _without_ recognizing `ios` as the platform and `test` as the lane within the platform. Removing the single quotes seems to solve the issue.
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.
Nice!
@@ -21,7 +21,7 @@ steps: | |||
# that occurs the first time after cleaning if one of your dependences uses a binary framework | |||
# See https://bugs.swift.org/browse/SR-13803 | |||
|
|||
build_and_test_pod 'ios test' || build_and_test_pod 'ios test' | |||
build_and_test_pod ios test || build_and_test_pod ios test |
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.
Good catch remembering to update those while updating from bash-cache 1.x
to 2.x
👏
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.
Thanks! But really... CI failed, I didn't remember 🙃 But I'll take it anyway 💪
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 won't tell, promise 🤐) 😜
2.7.4 |
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.
🎉
fastimage (2.2.5) | ||
fastlane (2.191.0) | ||
fastimage (2.2.6) | ||
fastlane (2.209.1) |
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'll soon start working on upgrading the Sentry library integration. Before that, I thought I'd get the tooling in as up-to-date a state as I could.