diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2016-07-20 16:48:59 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2016-07-20 17:23:57 -0700 |
commit | a1d82bbf246837c4ff83ca95246157aacf465c0a (patch) | |
tree | b9279cbaee7ec6fa1a5b1eea28cafd164d3219b9 | |
parent | c9ea19c97740b1f082b58ac3f4937d3bc5284dec (diff) |
Move Releng Jobs under 'releng' folder
This should help clarify what jobs belong to releng, and that the yaml
file is unaffiliated with 'releng-defaults' and 'releng-macros'.
- Step [1/2] in publishing jobs to the Jenkins sandbox
- Explicitly passes the '-r' to jenkins-jobs so that other understand
releng recursively tests jobs. This option is implied by the
jenkins-job-builder configuration on the server.
JIRA: RELENG-91
Change-Id: Ic4bad170b3d311376a2d081089ac538b53595728
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
-rw-r--r-- | jjb/releng/releng-ci-jobs.yml (renamed from jjb/releng-jobs.yaml) | 2 | ||||
-rwxr-xr-x | jjb/releng/verify-releng.sh (renamed from jjb/verify-releng) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/jjb/releng-jobs.yaml b/jjb/releng/releng-ci-jobs.yml index d73ef50b7..60551f5bb 100644 --- a/jjb/releng-jobs.yaml +++ b/jjb/releng/releng-ci-jobs.yml @@ -50,7 +50,7 @@ builders: - shell: - !include-raw: verify-releng + !include-raw: verify-releng.sh publishers: - archive-artifacts: diff --git a/jjb/verify-releng b/jjb/releng/verify-releng.sh index 82d76e366..5c2dbff7a 100755 --- a/jjb/verify-releng +++ b/jjb/releng/verify-releng.sh @@ -18,4 +18,4 @@ for x in $(find . -name *\.yml); do done source /opt/virtualenv/jenkins-job-builder/bin/activate -jenkins-jobs test -o job_output jjb/ +jenkins-jobs test -o job_output -r jjb/ |