@@ -58,44 +58,45 @@ jobs:
5858 with :
5959 add-job-summary-as-pr-comment : ' on-failure'
6060
61- - name : Execute buildHealth for build-logic
62- run : ' ./gradlew -p build-logic/ buildHealth'
61+ - parallel :
62+ - name : Execute buildHealth for build-logic
63+ run : ' ./gradlew -p build-logic/ buildHealth'
6364
64- - name : Execute check (build-logic)
65- run : ' ./gradlew -p build-logic/ check'
65+ - name : Execute check (build-logic)
66+ run : ' ./gradlew -p build-logic/ check'
6667
67- - name : Execute buildHealth for main project
68- run : ' ./gradlew buildHealth'
68+ - name : Execute buildHealth for main project
69+ run : ' ./gradlew buildHealth'
6970
70- - name : Execute buildHealth for testkit project
71- run : ' ./gradlew -p testkit/ buildHealth'
71+ - name : Execute buildHealth for testkit project
72+ run : ' ./gradlew -p testkit/ buildHealth'
7273
73- - name : Execute check (non-functional tests)
74- run : ' ./gradlew check -s -x :functionalTest'
74+ - name : Execute check (non-functional tests)
75+ run : ' ./gradlew check -s -x :functionalTest'
7576
76- - name : Execute check (testkit)
77- run : ' ./gradlew -p testkit/ check'
77+ - name : Execute check (testkit)
78+ run : ' ./gradlew -p testkit/ check'
7879
79- - name : Execute JVM functional tests
80- run : ' ./gradlew :functionalTest -DfuncTest.package=jvm -DfuncTest.quick'
80+ - name : Execute JVM functional tests
81+ run : ' ./gradlew :functionalTest -DfuncTest.package=jvm -DfuncTest.quick'
8182
82- # Temporary to help debug "only fails on CI". https://github.com/autonomousapps/dependency-analysis-gradle-plugin/pull/1719
83- # https://github.com/actions/upload-artifact
84- # https://docs.github.com/en/actions/reference/workflows-and-actions/expressions
85- - uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # 7.0.1
86- if : failure()
87- with :
88- name : functional-tests-jvm
89- path : build/functionalTest/
83+ # # Temporary to help debug "only fails on CI". https://github.com/autonomousapps/dependency-analysis-gradle-plugin/pull/1719
84+ # # https://github.com/actions/upload-artifact
85+ # # https://docs.github.com/en/actions/reference/workflows-and-actions/expressions
86+ # - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # 7.0.1
87+ # if: failure()
88+ # with:
89+ # name: functional-tests-jvm
90+ # path: build/functionalTest/
9091
91- - name : Execute Android functional tests
92- run : ' ./gradlew :functionalTest -DfuncTest.package=android -DfuncTest.quick'
92+ - name : Execute Android functional tests
93+ run : ' ./gradlew :functionalTest -DfuncTest.package=android -DfuncTest.quick'
9394
94- - name : Execute KMP functional tests
95- run : ' ./gradlew :functionalTest -DfuncTest.package=kmp -DfuncTest.quick'
95+ - name : Execute KMP functional tests
96+ run : ' ./gradlew :functionalTest -DfuncTest.package=kmp -DfuncTest.quick'
9697
97- - name : Check API
98- run : ' ./gradlew :checkApi'
98+ - name : Check API
99+ run : ' ./gradlew :checkApi'
99100
100101 - name : Publish snapshot
101102 if : github.repository == 'autonomousapps/dependency-analysis-gradle-plugin' && github.ref == 'refs/heads/main'
0 commit comments