a3139c4bb5
This is the result of having run the zuul migration tool. Depends-On: I72687a56285a3d733a9adeaf3dc037a1ac95efd3 Change-Id: Ib511da75908e152e72fdf0d7b496f4fa98f9c223 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
123 lines
4.4 KiB
YAML
123 lines
4.4 KiB
YAML
- hosts: all
|
|
name: Autoconverted job legacy-deploy-guide from old job gate-{name}-deploy-guide
|
|
tasks:
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
CLONEMAP=`mktemp`
|
|
REQS_DIR=`mktemp -d`
|
|
function cleanup {
|
|
mkdir -p $WORKSPACE
|
|
rm -rf $CLONEMAP $REQS_DIR
|
|
}
|
|
trap cleanup EXIT
|
|
cat > $CLONEMAP << EOF
|
|
clonemap:
|
|
- name: $ZUUL_PROJECT
|
|
dest: .
|
|
EOF
|
|
# zuul cloner works poorly if there are 2 names that are the
|
|
# same in here.
|
|
if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then
|
|
cat >> $CLONEMAP << EOF
|
|
- name: openstack/requirements
|
|
dest: $REQS_DIR
|
|
EOF
|
|
fi
|
|
/usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \
|
|
git://git.openstack.org $ZUUL_PROJECT openstack/requirements
|
|
# REQS_DIR is not set for openstack/requirements and there is also
|
|
# no need to copy in this case.
|
|
if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then
|
|
cp $REQS_DIR/upper-constraints.txt ./
|
|
fi
|
|
executable: /bin/bash
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: /usr/local/jenkins/slave_scripts/install-distro-packages.sh
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -x
|
|
sudo rm -f /etc/sudoers.d/jenkins-sudo
|
|
# Prove that general sudo access is actually revoked
|
|
! sudo -n true
|
|
executable: /bin/bash
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
VENV="deploy-guide"
|
|
GUIDEDIR="deploy-guide"
|
|
|
|
#!/bin/bash -xe
|
|
|
|
# This script is used to publish project-specific deploy-guide and
|
|
# install-guide documents to the proper place. Master will be
|
|
# published to a draft directory, stable/X will be published to the X
|
|
# directory. For example stable/newton documents will life in the
|
|
# newton directory.
|
|
|
|
# You need to pass in the following variables:
|
|
# VENV - virtual env to use
|
|
# GUIDEDIR - directory for building
|
|
|
|
if [ -z "$VENV" ] ; then
|
|
echo "The variable VENV is not set."
|
|
exit 1
|
|
fi
|
|
if [ -z "$GUIDEDIR" ] ; then
|
|
echo "The variable GUIDEDIR is not set."
|
|
exit 1
|
|
fi
|
|
|
|
export UPPER_CONSTRAINTS_FILE=$(pwd)/upper-constraints.txt
|
|
|
|
tox -e $VENV
|
|
|
|
[ -e .tox/$VENV/bin/pbr ] && freezecmd=pbr || freezecmd=pip
|
|
|
|
echo "Begin pbr freeze output from test virtualenv:"
|
|
echo "======================================================================"
|
|
.tox/${VENV}/bin/${freezecmd} freeze
|
|
echo "======================================================================"
|
|
|
|
MARKER_TEXT="Project: $ZUUL_PROJECT Ref: $ZUUL_REFNAME Build: $ZUUL_UUID Revision: $ZUUL_NEWREV"
|
|
echo $MARKER_TEXT > $GUIDEDIR/build/html/.root-marker
|
|
|
|
if [ -z "$ZUUL_REFNAME" ]; then
|
|
TARGET=""
|
|
# Leave documents where they are
|
|
elif [ "$ZUUL_REFNAME" == "master" ] ; then
|
|
TARGET=draft
|
|
elif echo $ZUUL_REFNAME | grep stable/ >/dev/null ; then
|
|
# Put stable release changes in dir named after stable release under the
|
|
# build dir. When Jenkins copies these files they will be accessible under
|
|
# the developer docs root using the name of the stable release.
|
|
TARGET=$(echo $ZUUL_REFNAME | sed 's/stable.//')
|
|
else
|
|
# Put other branch changes in dir named after branch under the
|
|
# build dir. When Jenkins copies these files they will be
|
|
# accessible under the developer docs root using the branch name.
|
|
# EG: feature/foo or milestone-proposed
|
|
TARGET=$ZUUL_REFNAME
|
|
fi
|
|
|
|
if [ ! -z $TARGET ] ; then
|
|
# Move the docs into subdir based on branch
|
|
TOP=`dirname $TARGET`
|
|
mv $GUIDEDIR/build/html $GUIDEDIR/build/tmp
|
|
mkdir -p $GUIDEDIR/build/html/$TOP
|
|
mv $GUIDEDIR/build/tmp $GUIDEDIR/build/html/$TARGET
|
|
fi
|
|
|
|
exit
|
|
executable: /bin/bash
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|