tests: enable nightly test execution in gitlab CI
This adds several stages to the gitlab-ci.yaml file which are triggered by a schedule specified in Gitlab->CI/CD->Schedules
This commit is contained in:
parent
beead86da6
commit
905c297bc7
5 changed files with 58 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
curl -L http://download.devel.redhat.com/rhel-8/nightly/RHEL-8/latest-RHEL-8.4/COMPOSE_ID > COMPOSE_ID
|
||||
curl -L http://download.devel.redhat.com/rhel-8/nightly/RHEL-8/latest-finished-RHEL-8.5/COMPOSE_ID > COMPOSE_ID
|
||||
COMPOSE_ID=$(cat COMPOSE_ID)
|
||||
|
||||
# default to a nightly tree but respect values passed from ENV so we can test rel-eng composes as well
|
||||
|
|
@ -10,3 +10,11 @@ COMPOSE_URL="${COMPOSE_URL:-http://download.devel.redhat.com/rhel-8/nightly/RHEL
|
|||
# in case COMPOSE_URL was defined from the outside refresh COMPOSE_ID file,
|
||||
# used for telegram messages in case of success/failure
|
||||
curl -L "$COMPOSE_URL/COMPOSE_ID" > COMPOSE_ID
|
||||
|
||||
# Make sure the compose URL really exists
|
||||
RETURN_CODE=$(curl --silent -o -I -L -s -w "%{http_code}" "${COMPOSE_URL}")
|
||||
if [ "$RETURN_CODE" != 200 ]
|
||||
then
|
||||
echo "Compose URL $COMPOSE_URL returned error code $RETURN_CODE, exiting."
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -63,11 +63,11 @@ esac
|
|||
|
||||
# overrides for RHEL nightly builds testing
|
||||
if [ -f "rhel-8.json" ]; then
|
||||
sudo mv rhel-8.json /etc/osbuild-composer/repositories/
|
||||
sudo cp rhel-8.json /etc/osbuild-composer/repositories/
|
||||
fi
|
||||
|
||||
if [ -f "rhel-8-beta.json" ]; then
|
||||
sudo mv rhel-8-beta.json /etc/osbuild-composer/repositories/
|
||||
sudo cp rhel-8-beta.json /etc/osbuild-composer/repositories/
|
||||
fi
|
||||
|
||||
# Generate all X.509 certificates for the tests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue