Skip to content

Commit e1db598

Browse files
committed
Merge branch '3.1.x' into 3.2.x
2 parents b17c5e0 + 8132059 commit e1db598

File tree

1 file changed

+3
-1
lines changed
  • .github/workflows/composites/maven-build-with-dry-run-for-tests

1 file changed

+3
-1
lines changed

.github/workflows/composites/maven-build-with-dry-run-for-tests/action.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ runs:
1515
- name: find all classpath entries
1616
shell: bash
1717
run: |
18-
./mvnw -q exec:exec -Dexec.classpathScope="test" -Dexec.executable="echo" -Dexec.args="%classpath" | tr : "\n" > /tmp/deps.txt
18+
# 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
1921
2022
- name: find all tests
2123
shell: bash

0 commit comments

Comments
 (0)