File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 52
52
strategy :
53
53
matrix :
54
54
cmd :
55
- - gradle testShardHibernate -i --scan --no-parallel
56
- - gradle testShardMiskAws -i --scan --no-parallel
57
- - gradle testShardMiskJdbc -i --scan --no-parallel
58
- - gradle testShardSchemaMigratorGradlePlugin -i --scan --no-parallel
59
- - gradle testShardVitess -i --scan --no-parallel
60
- - gradle testShardVitessGradlePlugin -i --scan --no-parallel
61
- - gradle testShardRedis -i --scan --no-parallel
62
- - gradle testShardNonHibernate -i --scan --parallel
55
+ - gradle -i --scan --no-parallel testShardHibernate testShardRedis
56
+ - gradle -i --scan testShardMiskAws testShardMiskHibernate testShardMiskJdbc testShardSchemaMigratorGradlePlugin testShardVitess testShardVitessGradlePlugin testShardNonHibernate
63
57
64
58
steps :
65
59
- name : Checkout
Original file line number Diff line number Diff line change @@ -121,6 +121,11 @@ val testShardMiskAws = tasks.register("testShardMiskAws") {
121
121
description = " Misk AWS tests"
122
122
}
123
123
124
+ val testShardMiskHibernate = tasks.register(" testShardMiskHibernate" ) {
125
+ group = " Continuous integration"
126
+ description = " misk-hibernate tests"
127
+ }
128
+
124
129
val testShardMiskJdbc = tasks.register(" testShardMiskJdbc" ) {
125
130
group = " Continuous integration"
126
131
description = " Misk JDBC tests"
@@ -152,12 +157,9 @@ val testShardNonHibernate = tasks.register("testShardNonHibernate") {
152
157
}
153
158
154
159
val hibernateProjects = listOf (
155
- " misk-aws" ,
156
160
" misk-events" ,
157
- " misk-hibernate" ,
158
161
" misk-jobqueue" ,
159
162
" misk-jobqueue-testing" ,
160
- " misk-jdbc" ,
161
163
" misk-jdbc-testing" ,
162
164
" misk-hibernate-testing" ,
163
165
" misk-rate-limiting-bucket4j-mysql" ,
@@ -301,6 +303,8 @@ subprojects {
301
303
testShardHibernate.configure { dependsOn(" ${subproj.path} :check" ) }
302
304
} else if (project.name.equals(" misk-aws" )) {
303
305
testShardMiskAws.configure { dependsOn(" ${subproj.path} :check" ) }
306
+ } else if (project.name.equals(" misk-hibernate" )) {
307
+ testShardMiskHibernate.configure { dependsOn(" ${subproj.path} :check" ) }
304
308
} else if (project.name.equals(" misk-jdbc" )) {
305
309
testShardMiskJdbc.configure { dependsOn(" ${subproj.path} :check" ) }
306
310
} else if (project.name.equals(" misk-schema-migrator-gradle-plugin" )) {
You can’t perform that action at this time.
0 commit comments