You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
The Schema.kt is generated by Apollo in build/generated/source/apollo/... folder. The content of the file is different from CI and Local builds causing lot of miss in our Gradle build cache.
Version
3.2.2
Description
The difference in the file come from the all list :
Local build would have :
public val all: List<CompiledType> = listOf(
graphql.models.type.TypeA.type,
graphql.models.type.TypeB.type,
graphql.models.type.TypeC.type,
graphql.models.type.TypeD.type)
CI would have :
public val all: List<CompiledType> = listOf(
graphql.models.type.TypeA.type,
graphql.models.type.TypeC.type,
graphql.models.type.TypeB.type,
graphql.models.type.TypeD.type)
The text was updated successfully, but these errors were encountered:
Summary
The
Schema.kt
is generated by Apollo inbuild/generated/source/apollo/...
folder. The content of the file is different from CI and Local builds causing lot of miss in our Gradle build cache.Version
3.2.2
Description
The difference in the file come from the
all
list :Local build would have :
CI would have :
The text was updated successfully, but these errors were encountered: