We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b17c5e0 + 8132059 commit e1db598Copy full SHA for e1db598
.github/workflows/composites/maven-build-with-dry-run-for-tests/action.yaml
@@ -15,7 +15,9 @@ runs:
15
- name: find all classpath entries
16
shell: bash
17
run: |
18
- ./mvnw -q exec:exec -Dexec.classpathScope="test" -Dexec.executable="echo" -Dexec.args="%classpath" | tr : "\n" > /tmp/deps.txt
+ # skip 'spring-cloud-kubernetes-controllers' project since we do not want to run tests from it.
19
+ # we already do that in the 'build-controllers-project/action.yaml', that happens before this step
20
+ ./mvnw -q exec:exec -Dexec.classpathScope="test" -Dexec.executable="echo" -Dexec.args="%classpath" | tr : "\n" | grep -v spring-cloud-kubernetes-controllers > /tmp/deps.txt
21
22
- name: find all tests
23
0 commit comments