Automatically run "Test Next" on CICD build #2013
-
|
Hi, This is probably a dumb and easy question, but what's the proper way to set up Test Next Minor/Major to be run in the PR build or CICD without making modifcations that update-system-files overrides? |
Beta Was this translation helpful? Give feedback.
Answered by
mazhelez
Nov 10, 2025
Replies: 1 comment 1 reply
-
|
If you wish to test your apps against next minor/major, you can set up buildModes with conditional settings. E.g. if you add a build mode "nextMajor", you can specify the following settings: "ConditionalSettings": [
{
"buildModes": [
"nextMajor"
],
"settings": {
"artifact": "////nextmajor",
"cacheImageName": "",
"versioningStrategy": 15
}
}
]This setup will make sure whenever the apps are built in CICD/PR Build, that an extra build job, targeting next major, is run. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
navdotnetreqs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you wish to test your apps against next minor/major, you can set up buildModes with conditional settings. E.g. if you add a build mode "nextMajor", you can specify the following settings:
This setup will make sure whenever the apps are built in CICD/PR Build, that an extra build job, targeting next major, is run.