- job: | |
name: systems-diagnostics-controller | |
project-type: freestyle | |
defaults: global | |
properties: | |
- authorization: | |
anonymous: | |
- job-discover | |
everyone-flat: | |
- job-build | |
- job-read | |
- job-extended-read | |
- job-configure | |
- job-cancel | |
- build-discarder: | |
days-to-keep: 5 | |
num-to-keep: 10 | |
disabled: false | |
node: master | |
display-name: 'Systems Diagnostics - Controller' | |
wrappers: | |
- timestamps | |
- credentials-binding: | |
- text: | |
credential-id: JJB_USER | |
variable: JJB_USER | |
- credentials-binding: | |
- text: | |
credential-id: JJB_PASSWORD | |
variable: JJB_PASSWORD | |
- credentials-binding: | |
- text: | |
credential-id: LAVA_USER | |
variable: LAVA_USER | |
- credentials-binding: | |
- text: | |
credential-id: LAVA_TOKEN | |
variable: LAVA_TOKEN | |
- credentials-binding: | |
- text: | |
credential-id: DEV_PRIVATE_KEY | |
variable: DEV_PRIVATE_KEY | |
- credentials-binding: | |
- text: | |
credential-id: AUTH_TOKEN | |
variable: AUTH_TOKEN | |
- ssh-agent-credentials: | |
users: | |
- '768c1ba1-6052-4b97-a531-7e4fabda6979' | |
builders: | |
- shell: | | |
#!/bin/bash -e | |
curl -o ./diag.sh https://people.linaro.org/~kelley.spoon/diag.sh | |
/bin/bash ./diag.sh | |
rm -f ./diag.sh | |
publishers: | |
- email: | |
recipients: 'kelley.spoon@linaro.org' |