eric-maynard commented on code in PR #1283:
URL: https://github.com/apache/polaris/pull/1283#discussion_r2056907784
##########
.github/workflows/gradle.yml:
##########
@@ -57,10 +57,10 @@ jobs:
validate-wrappers: false
- name: Code style checks and tests
- run: ./gradlew --continue check
+ run: ./gradlew --continue check --no-build-cache
Review Comment:
I think I don't understand the nuance here very well... that looks similar
to what we do in Polaris already?
Another thing that I experimented with it deleting the generated files
altogether in the `openApiGenerate` task, e.g. via:
```
doFirst {
val output = file(outputDir.get())
if (output.exists()) {
output.deleteRecursively()
}
}
```
But from what I can tell, we still need to explicitly disable caching to
ensure that the files always get regenerated from the spec.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]