2e6a19a018
Use squashfs for more recent Ubuntu releases Change-Id: I80df28be6e2a5e03ae1450e84fc05715f21a7750 Closes-bug: 1766850
79 lines
2.5 KiB
YAML
79 lines
2.5 KiB
YAML
- hosts: all
|
|
name: Autoconverted job legacy-dib-dsvm-functests-python3-image from old job gate-dib-dsvm-functests-python3-ubuntu-xenial-image-nv
|
|
roles:
|
|
- bindep
|
|
|
|
tasks:
|
|
|
|
- name: Ensure legacy workspace directory
|
|
file:
|
|
path: '{{ ansible_user_dir }}/workspace'
|
|
state: directory
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -u
|
|
set -e
|
|
set -x
|
|
cd ~
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/diskimage-builder \
|
|
openstack/requirements
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -u
|
|
set -e
|
|
set -x
|
|
#
|
|
# We do things that might exceed the default 2GiB tmpfs, and
|
|
# use the larger mounted space.
|
|
cd ~
|
|
sudo mkdir /opt/dib_cache
|
|
sudo chown zuul:zuul /opt/dib_cache
|
|
export DIB_NO_TMPFS=1
|
|
export TMPDIR=/opt/dib_cache
|
|
|
|
virtualenv -p python3 env
|
|
|
|
export UPPER_CONSTRAINTS_FILE=$(pwd)/openstack/requirements/upper-constraints.txt
|
|
sed -i '/^diskimage-builder/d' $UPPER_CONSTRAINTS_FILE
|
|
./env/bin/pip install $(pwd)/openstack/diskimage-builder -c $UPPER_CONSTRAINTS_FILE
|
|
|
|
# TODO(pabelanger): Remove once we migrated to bindep
|
|
./openstack/diskimage-builder/tests/install_test_deps.sh
|
|
|
|
# This sets up some repo files pointing to the infra mirrors
|
|
# which are used during test runs
|
|
./openstack/diskimage-builder/contrib/setup-gate-mirrors.sh
|
|
|
|
# UPPER_CONSTRAINTS_FILE is causing side effects when doing image
|
|
# build, unset it
|
|
unset UPPER_CONSTRAINTS_FILE
|
|
|
|
# activate the virtualenv so that any tools run by dib run
|
|
# using the python inside it
|
|
set +u
|
|
source ./env/bin/activate
|
|
set -u
|
|
|
|
./openstack/diskimage-builder/tests/run_functests.sh \
|
|
centos7/build-succeeds \
|
|
opensuse/build-succeeds \
|
|
opensuse/opensuse423-build-succeeds \
|
|
fedora/build-succeeds \
|
|
ubuntu/xenial-build-succeeds \
|
|
ubuntu/bionic-build-succeeds
|
|
|
|
set +u
|
|
deactivate
|
|
set -u
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|