Noticed at https://github.com/checkstyle/checkstyle/pull/12841/files, we have some tasks in validation.sh that are not being run in CI right now:
➜ checkstyle git:(update-inspection-message) ✗ for n in $(cat .ci/validation.sh | grep no-error | cut -d')' -f 1); do ag -Q -G '.yml' --hidden $n || echo "no results: $n"; done
.circleci/config.yml
142: name: "no-error-pmd"
144: command: "./.ci/validation.sh no-error-pmd"
.circleci/config.yml
138: name: "no-error-xwiki"
140: command: "./.ci/validation.sh no-error-xwiki"
.circleci/config.yml
218: name: "no-error-test-sbe"
220: command: "./.ci/validation.sh no-error-test-sbe"
.semaphore/semaphore.yml
71: - .ci/validation.sh no-error-pgjdbc
.semaphore/semaphore.yml
72: - .ci/validation.sh no-error-orekit
no results: no-error-hibernate-search
.semaphore/semaphore.yml
73: - .ci/validation.sh no-error-checkstyles-sevntu
.semaphore/semaphore.yml
74: - .ci/validation.sh no-error-sevntu-checks
.semaphore/semaphore.yml
75: - .ci/validation.sh no-error-contribution
.semaphore/semaphore.yml
76: - .ci/validation.sh no-error-methods-distance
.semaphore/semaphore.yml
77: - .ci/validation.sh no-error-spring-cloud-gcp
.semaphore/semaphore.yml
78: - .ci/validation.sh no-error-equalsverifier
no results: no-error-strata
no results: no-error-spring-integration
no results: no-error-htmlunit
We should either activate these tasks, or have a comment in validation.sh explaining why we do not execute this in CI.
Noticed at https://github.com/checkstyle/checkstyle/pull/12841/files, we have some tasks in validation.sh that are not being run in CI right now:
We should either activate these tasks, or have a comment in validation.sh explaining why we do not execute this in CI.