
This reverts commit dea3bdb050a55d56a1913e50e59cf176d70d3eb7. This revert is necessary because it changed jenkins jobs before the slave images could be rebuilt. We need to update the slave images first then update the jenkins jobs in a pair of changes that can be merged one at a time. Change-Id: Iae4abf8c2dd8ad67ad008c57bbd17ba1304134c6
64 lines
2.0 KiB
YAML
64 lines
2.0 KiB
YAML
- job:
|
|
name: gate-groups-unittests
|
|
node: 'bare-precise'
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
# fetch drush
|
|
mkdir drush
|
|
curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1
|
|
# build distribution
|
|
./drush/drush make build-groups.make dist
|
|
publishers:
|
|
- console-log
|
|
- coverage-log
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: './reports/**'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
|
|
- job-template:
|
|
name: 'groups-release-{branch-designator}'
|
|
node: '{node}'
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/local/jenkins/slave_scripts/maven-properties.sh
|
|
- inject:
|
|
properties-file: maven.properties
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
# fetch drush
|
|
mkdir drush
|
|
curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1
|
|
# build distribution
|
|
./drush/drush make build-groups.make dist
|
|
# Clean/create a tarball directory
|
|
rm -rf tarballs
|
|
mkdir -p tarballs
|
|
# Create an archive tarball.
|
|
tar -czf groups-$PROJECT_VER.tar.gz dist/
|
|
cp groups-$PROJECT_VER.tar.gz tarballs/groups-latest.tar.gz
|
|
mv groups-$PROJECT_VER.tar.gz tarballs/
|
|
publishers:
|
|
- console-log
|
|
- coverage-log
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: './reports/**'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- target: 'tarballs/groups/'
|
|
source: 'tarballs/*.tar.gz'
|
|
keep-hierarchy: false
|
|
copy-after-failure: false
|