Files
2024-12-30 15:52:51 +01:00

17 lines
250 B
Groovy

plugins {
id "org.springframework.lifecycle.smoke-test-ci"
}
smokeTests {
'3.3.x' {
branch = '3.3.x'
location = "../3.3.x"
cronSchedule = "10 0 * * *"
}
'3.4.x' {
branch = 'main'
location = "../main"
cronSchedule = "20 0 * * *"
}
}