4a41ca7bf0
This normalizes the formatting of files from ci-scripts and config folders in order to allow further hardening of linting. Fixing linting was too big to be made in a single commit as it would involve too many files to review and could merge conflicts with existing changes. Thus doing it in few chunks would makes it possible. Original full change is at https://review.openstack.org/#/c/627545/ and will be the one merging the last. Change-Id: Ifb215c0e2ea0ef7115897721f75ba8489bd59b97
54 lines
1.5 KiB
Bash
54 lines
1.5 KiB
Bash
#!/bin/bash
|
|
# Collect the logs from a CI job
|
|
|
|
set -eux
|
|
|
|
# Note(hrybacki): Config used by collect-logs should be the same used by
|
|
# TripleO Quickstart during deployment
|
|
CONFIG=$1
|
|
LOG_ENV=${2:-centosci}
|
|
JOB_TYPE=${3:-default}
|
|
|
|
export ANSIBLE_INVENTORY=$WORKSPACE/hosts
|
|
export ANSIBLE_CONFIG=$WORKSPACE/tripleo-quickstart/ansible.cfg
|
|
export SSH_CONFIG=$WORKSPACE/ssh.config.ansible
|
|
export ANSIBLE_SSH_ARGS="-F ${SSH_CONFIG}"
|
|
|
|
# (trown) This is so that we ensure separate ssh sockets for
|
|
# concurrent jobs. Without this, two jobs running in parallel
|
|
# would try to use the same undercloud-stack socket.
|
|
socketdir=$(mktemp -d /tmp/sockXXXXXX)
|
|
export ANSIBLE_SSH_CONTROL_PATH=$socketdir/%%h-%%r
|
|
|
|
export ARA_DATABASE="sqlite:///${WORKSPACE}/ara.sqlite"
|
|
$WORKSPACE/bin/ara generate html $WORKSPACE/ara
|
|
gzip --recursive --best $WORKSPACE/ara
|
|
|
|
# Check for existence of the config file in the default
|
|
# directory or as a full path
|
|
if [ -f $WORKSPACE/config/general_config/$CONFIG.yml ]; then
|
|
CONFIG_PATH=$WORKSPACE/config/general_config/$CONFIG.yml
|
|
elif [ -f $CONFIG ]; then
|
|
CONFIG_PATH=$CONFIG
|
|
else
|
|
echo "ERROR: Config file $CONFIG is not found." >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$JOB_TYPE" = "gate" ]; then
|
|
VERIFY_SPHINX=true
|
|
else
|
|
VERIFY_SPHINX=false
|
|
fi
|
|
|
|
bash quickstart.sh \
|
|
--working-dir $WORKSPACE/ \
|
|
--no-clone \
|
|
--bootstrap \
|
|
--retain-inventory \
|
|
--config $CONFIG_PATH \
|
|
--playbook collect-logs.yml \
|
|
--extra-vars @$WORKSPACE/config/general_config/${LOG_ENV}-logs.yml \
|
|
--extra-vars artcl_verify_sphinx_build=$VERIFY_SPHINX \
|
|
localhost
|