File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ variables:
25
25
# Using multiple test stages to avoid running some things in parallel (see job notes).
26
26
stages :
27
27
- test
28
- - test-2
29
- - test-3
30
28
- upload-to-internal
31
29
- upload-to-central
32
30
- package-api-docs
@@ -65,13 +63,13 @@ test:
65
63
66
64
test-windows :
67
65
extends : .test-template
68
- stage : test-2
66
+ needs : [" test"]
69
67
tags : [ windows ]
70
68
script : ./gradlew $GITLAB_REPO_ARGS $VERSION_ARGS clean build
71
69
72
70
test-macos :
73
71
extends : .test-template
74
- stage : test-2
72
+ needs : [" test"]
75
73
tags : [mac11+, x64]
76
74
script : ./gradlew $GITLAB_REPO_ARGS $VERSION_ARGS clean build
77
75
@@ -87,19 +85,19 @@ test-macos:
87
85
# Note: can not run these in parallel using a matrix configuration as Gradle would step over itself.
88
86
test-jdk-8 :
89
87
extends : .test-asan-template
90
- stage : test-2
88
+ needs : [" test"]
91
89
variables :
92
90
TEST_JDK : 8
93
91
94
92
test-jdk-16 :
95
93
extends : .test-asan-template
96
- stage : test-3
94
+ needs : [" test-jdk-8"]
97
95
variables :
98
96
TEST_JDK : 16
99
97
100
98
test-jdk-x86 :
101
99
extends : .test-template
102
- stage : test-3
100
+ needs : [" test-windows"]
103
101
tags : [ windows ]
104
102
variables :
105
103
# TEST_WITH_JAVA_X86 makes objectbox-java-test use 32-bit java executable and therefore
You can’t perform that action at this time.
0 commit comments