Last active
August 29, 2015 14:19
-
-
Save avtar/4b5924dc37da4b932459 to your computer and use it in GitHub Desktop.
Example Jenkins Job Builder configuration for AsTeRICS P4AllBuildingBlocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- job: | |
name: 'asterics-P4AllBuildingBlocks' | |
project-type: 'freestyle' | |
display-name: 'AsTeRICS components for the Prosperity For All project' | |
scm: | |
- git: | |
url: https://github.com/asterics/P4AllBuildingBlocks.git | |
branches: | |
- master | |
triggers: | |
- github | |
# Alternatively the SCM can be polled using cron syntax if direct access to Github servers | |
# can't be provided, the following example would poll every 15 minutes | |
# - pollscm: "*/15 * * * *" | |
builders: | |
# Some other options include: | |
# Powershell http://ci.openstack.org/jenkins-job-builder/builders.html#builders.powershell | |
# Shell https://gist.github.com/avtar/11383749#file-fluid-infusion-yml-L13-L16 | |
- batch: CameraInputModules/FacetrackerLK/start_facetrackerLK.bat | |
reporters: | |
# Email notifications on build failures | |
- email: | |
recipients: [email protected] | |
publishers: | |
- s3: | |
s3-profile: asterics | |
entries: | |
- destination-bucket: asterics-p4allbuildingblocks | |
source-files: '**' | |
storage-class: STANDARD | |
bucket-region: EU_WEST_1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment