-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathRenovate
22 lines (22 loc) · 948 Bytes
/
Renovate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
node {
configFileProvider([configFile(fileId: 'renovate', targetLocation: 'renovate.js', variable: 'RENOVATE_CONFIG')]) {
withEnv(["RENOVATE_CONFIG_FILE=${RENOVATE_CONFIG}"]){
stage('Platform'){
powershell "renovate --autodiscover-filter VirtoCommerce/vc-platform"
}
stage('Modules'){
//bat "renovate --autodiscover-filter VirtoCommerce/vc-module-*"
}
}
}
configFileProvider([configFile(fileId: 'renovate_front', targetLocation: 'renovate_front.js', variable: 'RENOVATE_CONFIG')]) {
withEnv(["RENOVATE_CONFIG_FILE=${RENOVATE_CONFIG}"]){
stage('Storefront'){
powershell "renovate --autodiscover-filter VirtoCommerce/vc-storefront-core"
}
stage('Themes'){
//bat "renovate --autodiscover-filter VirtoCommerce/vc-+(theme|procurement)-*"
}
}
}
}