-
Notifications
You must be signed in to change notification settings - Fork 5
Update librarian and workflows #191
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
Conversation
| @@ -1,16 +1,16 @@ | |||
| name: Build pull request | |||
| name: check-pull-request | |||
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 tend to just remove the name these days since it duplicates the file name 🤷
|
|
||
| jobs: | ||
| build-pull-request: | ||
| check-pull-request: |
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 tend to use build-pull-request because it calls ./gradlew build
gradle/repositories.gradle.kts
Outdated
| pluginManagement.repositories { | ||
| exclusiveContent { | ||
| forRepository { maven("https://storage.googleapis.com/gradleup/m2") } | ||
| filter { | ||
| includeGroup("com.gradleup.librarian") | ||
| } | ||
| } | ||
| } |
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 know we have this in other places but this is actually wrong. librarian is also released on Maven Central.
What we need is more the opposite:
maven("https://storage.googleapis.com/gradleup/m2") {
content {
includeGroup("com.gradleup.librarian")
}
}
| final const val com.apollographql.cache.normalized/VERSION // com.apollographql.cache.normalized/VERSION|{}VERSION[0] | ||
| final fun <get-VERSION>(): kotlin/String // com.apollographql.cache.normalized/VERSION.<get-VERSION>|<get-VERSION>(){}[0] | ||
|
|
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.
Interesting that removing the const is a breaking change on native. No @JvmField there. I think it's OK though 👍
No description provided.