@@ -45,38 +45,44 @@ project {
4545 this .id(" compatibility" )
4646 name = " compatibility"
4747
48- Neo4jVersion .entries.forEach { neo4j ->
48+ Neo4jVersion .entries.minus( Neo4jVersion . V_NONE ). forEach { neo4j ->
4949 subProject(
50- Build (name = " ${neo4j.version} " , forPullRequests = false , neo4jVersion = neo4j) {
51- triggers {
52- vcs { enabled = false }
50+ Build (
51+ name = " ${neo4j.version} " ,
52+ forPullRequests = false ,
53+ forCompatibility = true ,
54+ neo4jVersion = neo4j) {
55+ triggers {
56+ vcs { enabled = false }
5357
54- schedule {
55- branchFilter = " +:main"
56- schedulingPolicy = daily {
57- hour = 8
58- minute = 0
58+ schedule {
59+ branchFilter = " +:main"
60+ schedulingPolicy = daily {
61+ hour = 8
62+ minute = 0
63+ }
64+ triggerBuild = always()
65+ }
5966 }
60- triggerBuild = always()
61- }
62- }
6367
64- features {
65- notifications {
66- buildFailedToStart = true
67- buildFailed = true
68- firstFailureAfterSuccess = true
69- firstSuccessAfterFailure = true
70- buildProbablyHanging = true
68+ features {
69+ notifications {
70+ buildFailedToStart = true
71+ buildFailed = true
72+ firstFailureAfterSuccess = true
73+ firstSuccessAfterFailure = true
74+ buildProbablyHanging = true
7175
72- notifierSettings = slackNotifier {
73- connection = SLACK_CONNECTION_ID
74- sendTo = SLACK_CHANNEL
75- messageFormat = simpleMessageFormat()
76+ branchFilter = " +:main"
77+
78+ notifierSettings = slackNotifier {
79+ connection = SLACK_CONNECTION_ID
80+ sendTo = SLACK_CHANNEL
81+ messageFormat = simpleMessageFormat()
82+ }
83+ }
7684 }
77- }
78- }
79- })
85+ })
8086 }
8187 })
8288}
0 commit comments