
The builders are run sequentially and short circuited. So if a job fails we used to loose the link to the logs, but a failed job is the main reason why someone would try to access the jenkins console log directly. Confirmed this patch hits all cases of link-logs using 'git grep -B1 link-logs' Change-Id: I74bc87b706c13624a1b34d0a0335c3a167ff8e34
18 lines
370 B
YAML
18 lines
370 B
YAML
- job-template:
|
|
name: '{pipeline}-gitdm'
|
|
|
|
node: '{node}'
|
|
|
|
builders:
|
|
- link-logs
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export TEMPDIR=${{TEMPDIR:-$(mktemp -d $(pwd)/dmtmp-XXXXXX)}}
|
|
export GITBASE=${{TEMPDIR}}/git
|
|
export LP_STATS=n
|
|
bash ./do-it.sh
|
|
|
|
publishers:
|
|
- console-log
|