diff options
author | Christoph Berg | 2016-01-09 23:12:38 +0000 |
---|---|---|
committer | Christoph Berg | 2016-01-09 23:12:38 +0000 |
commit | 23c8161ba3bf5422eaa3d6c7734e6d58e27d83a2 (patch) | |
tree | 9fc851cd72647d5d4d3f6f02a51a90ae1bba00f6 | |
parent | f5786d2314a4eda78ca1455d49bbaed1dfc96196 (diff) |
Remove most traces of our job-name hackremove-job-name
TBD: -binaries-with-next and -binaries-sid-amd64
-rw-r--r-- | jenkins/pgapt-jobs.yaml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/jenkins/pgapt-jobs.yaml b/jenkins/pgapt-jobs.yaml index 0f77630..e72e4ab 100644 --- a/jenkins/pgapt-jobs.yaml +++ b/jenkins/pgapt-jobs.yaml @@ -85,7 +85,6 @@ - job-template: &apt_source_template name: '{name}-source-apt' - job-name: '{name}-source' description: 'Build Debian source package of {name} from "apt-get source".<br />Do not edit this job through the web interface, it is generated via jenkins-job-builder!' project-type: matrix child-workspace: . @@ -124,7 +123,7 @@ - job-template: &git_source_template <<: *apt_source_template - name: '{name}-source-git' + name: '{name}-source' description: 'Build Debian source package of {name} from git.<br />Do not edit this job through the web interface, it is generated via jenkins-job-builder!' parameters: - string: &git_branch @@ -148,7 +147,6 @@ - job-template: <<: *git_source_template name: '{source-name}-source-git-head' - job-name: '{source-name}-source-git-head' parameters: - string: *git_branch - choice: @@ -202,7 +200,7 @@ builders: - shell: 'rm -rf *' - copyartifact: ©source - project: '{name}-source/distribution=$distribution' + project: '{source-job}/distribution=$distribution' filter: 'result/*' flatten: true which-build: upstream-build @@ -404,41 +402,46 @@ jobs: - '{name}-source-apt' - '{name}-binaries' + source-job: '{name}-source-apt' next-job: dput noadt: '' - job-group: name: git-packages jobs: - - '{name}-source-git' + - '{name}-source' - '{name}-binaries' + source-job: '{name}-source' next-job: dput noadt: '' - job-group: name: git-packages-sequential jobs: - - '{name}-source-git' + - '{name}-source' - '{name}-binaries-sequential' + source-job: '{name}-source' next-job: dput noadt: '' - job-group: name: git-packages-with-next jobs: - - '{name}-source-git' + - '{name}-source' - '{name}-binaries-with-next' - '{name}-binaries-beta' - '{name}-binaries-devel' + source-job: '{name}-source' next-job: dput noadt: '' - job-group: name: git-packages-adt jobs: - - '{name}-source-git' + - '{name}-source' - '{name}-binaries' - '{name}-testsuite' + source-job: '{name}-source' #next-job: '{name}-testsuite' -- doesn't resolve {name} (needs to be set manually in the job) noadt: 'ADT=skip ' |