Triggers - build with every commit
Now we have covered how to configure the build steps and queue them manually. In continuous integration, it is important to automate the build, especially whenever developers check code in. This helps keep the latest build up to date with all the changes made and lets developers know of any issues in the build at earlier stages of development.
Follow these steps now to set up triggers and automate the build:
- Click on the
Triggers
tab in the configurations section shown in previous steps:

- In the
Triggers
tab, in the left pane, you'll see a section forContinuous integration
, under which you will find your repository linked. - Click on that link to open the continuous integration section on the right-hand side:

- Check the
Enable continuous integration
box. - You'll notice there is one more checkbox, to
Batch changes while build in progress
. This option is useful when you have many developers frequently checking in changes to a repository. Checking this option will batch...