Periodic build runner for nci nci.
npm install nci-schedulerTo enable add this plugin to the plugins section at server config:
{
"plugins": [
"nci-scheduler"
]
....
}after that you can set scheduler settings at project config e.g. (for building project every 5 seconds):
"buildEvery": {
"time": "*/5 * * * * *",
"withScmChangesOnly": true
}parameters:
time- 6 or 5 (seconds can be omitted) groups cron stringwithScmChangesOnly- if true then build will be started only if there is scm changes for projectbuildParams- params for the build (override project config)