Darragh Bailey f94a653195 Remove duplicate unused job definitions
Remove duplicate references to 'gate-{name}-docs' where the project uses
the job-group 'python-jobs' as this already includes the docs job.

Remove template-job definition for 'gate-{name}-build' as it has been
replaced by a job-group which supersedes the template-job definition due
to the parse order of jobs, job groups and job templates.

Change-Id: I096087e2e6663f919fb3779a7b628abde2ebe0ab
2014-07-27 01:43:49 +01:00

58 lines
1.5 KiB
YAML

# usig a freestyle project to work around jenkins bug:
# https://issues.jenkins-ci.org/browse/JENKINS-14193
- job-template:
name: '{name}-localrepo-upload'
node: '{node}'
wrappers:
- build-timeout:
timeout: 30
- timestamps
builders:
- revoke-sudo
- gerrit-git-prep
- shell: |
#!/bin/bash -xe
/usr/local/jenkins/slave_scripts/version-properties.sh
source version.properties
mvn clean package -Dproject-version=$PROJECT_VER
publishers:
- war:
site: '{tarball-site}'
warfile: 'target/{name}-*.jar'
target: 'tarballs/ci/{name}'
- console-log
- job-template:
name: '{name}-mavencentral-upload'
node: pypi
builders:
- revoke-sudo
- shell: |
#!/bin/bash -xe
TAG=`echo $ZUUL_REF | sed 's/^refs.tags.//'`
FILENAME_BIN="{name}-$TAG.jar"
# copy plugin artifacts from tarballs to local workspace
rm -rf *.jar
curl -o $FILENAME_BIN http://{tarball-site}/ci/{name}/$FILENAME_BIN
# deploy to maven repository
FILENAME_POM="{name}-$TAG.pom"
/usr/local/jenkins/slave_scripts/mavencentral-upload.sh {name} $TAG \
$FILENAME_POM $FILENAME_BIN
publishers:
- console-log
- job-group:
name: maven-plugin-jobs
jobs:
- 'gate-{name}-build'
- '{name}-localrepo-upload'
- '{name}-mavencentral-upload'