File tree 2 files changed +12
-11
lines changed
2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,15 @@ anchors:
42
42
path : lib-extra/build/test-results/test
43
43
- store_test_results :
44
44
path : plugin-gradle/build/test-results/test
45
+ - store_artifacts :
46
+ path : lib/build/spotbugs
47
+ - store_artifacts :
48
+ path : lib-extra/build/spotbugs
49
+ - store_artifacts :
50
+ path : testlib/build/spotbugs
51
+ - store_artifacts :
52
+ path : plugin-gradle/build/spotbugs
53
+
45
54
jobs :
46
55
# gradlew spotlessCheck assemble testClasses
47
56
assemble_testClasses :
@@ -108,22 +117,14 @@ jobs:
108
117
- store_test_results :
109
118
path : plugin-gradle/build/test-results/NpmTest
110
119
- run :
111
- name : gradlew check
112
- command : export SPOTLESS_EXCLUDE_MAVEN=true && ./gradlew check --build-cache
120
+ name : gradlew test
121
+ command : export SPOTLESS_EXCLUDE_MAVEN=true && ./gradlew test --build-cache
113
122
- store_test_results :
114
123
path : testlib/build/test-results/test
115
124
- store_test_results :
116
125
path : lib-extra/build/test-results/test
117
126
- store_test_results :
118
127
path : plugin-gradle/build/test-results/test
119
- - store_artifacts :
120
- path : lib/build/spotbugs
121
- - store_artifacts :
122
- path : lib-extra/build/spotbugs
123
- - store_artifacts :
124
- path : testlib/build/spotbugs
125
- - store_artifacts :
126
- path : plugin-gradle/build/spotbugs
127
128
test_windows :
128
129
executor :
129
130
name : win/default
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ tasks.named('spotbugsTest') {
26
26
}
27
27
tasks. named(' spotbugsMain' ) {
28
28
// only run on Java 8 (no benefit to running twice)
29
- enabled = org.gradle.api.JavaVersion . current() == org.gradle.api.JavaVersion . VERSION_1_8
29
+ enabled = org.gradle.api.JavaVersion . current() == org.gradle.api.JavaVersion . VERSION_11
30
30
reports {
31
31
html. enabled = true
32
32
}
You can’t perform that action at this time.
0 commit comments