17 lines
250 B
Groovy
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 * * *"
|
|
}
|
|
}
|