Skip to content

Commit 8132059

Browse files
authored
Merge pull request #1943 from wind57/skip_controllers
skip controllers
2 parents b9a1f5c + c6333e9 commit 8132059

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)