9a368f19cd
All remaining unit tests and builds which previously took place on persistent precise*.slave.openstack.org servers now run on quantal servers instead. Change-Id: Ie4a59eeb7e3895f5d35471377c3bea462c615f50 Reviewed-on: https://review.openstack.org/26084 Reviewed-by: matthew-wagoner <matthew.wagoner@hp.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Approved: Jeremy Stanley <fungi@yuggoth.org> Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Tested-by: Jenkins
22 lines
770 B
YAML
22 lines
770 B
YAML
- job:
|
|
name: gate-requirements-install
|
|
node: quantal
|
|
|
|
triggers:
|
|
- zuul
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/local/jenkins/slave_scripts/select-mirror.sh openstack requirements
|
|
virtualenv --clear --distribute .venv
|
|
# Ignore lines beginning with https?:// just as the mirror script does.
|
|
sed -e '/https\?:\/\//d' tools/pip-requires > tools/pip-requires.clean
|
|
sed -e '/https\?:\/\//d' tools/test-requires > tools/test-requires.clean
|
|
# Run the same basic pip command that the mirror script runs.
|
|
.venv/bin/pip install -M -U --exists-action=w -r tools/pip-requires.clean -r tools/test-requires.clean
|
|
|
|
publishers:
|
|
- console-log
|