host=gerrit.opnfv.org
port=29418
project=functest-xtesting.git
-
+defaultbranch=stable/2024.1
script: >
sudo manifest-tool push from-args \
--platforms linux/amd64,linux/arm,linux/arm64 \
- --template ${DOCKER_USERNAME}/xtesting:ARCH-latest \
- --target ${DOCKER_USERNAME}/xtesting:latest
+ --template ${DOCKER_USERNAME}/xtesting:ARCH-2024.1 \
+ --target ${DOCKER_USERNAME}/xtesting:2024.1
gerrit_project: functest-xtesting
git_url: https://gerrit.opnfv.org/gerrit/functest-xtesting
docker_tags:
- - latest:
- branch: master
- dependency: '3.17'
+ - '2024.1':
+ branch: stable/2024.1
+ dependency: '3.20'
builds:
dependency:
repo: _
- hosts: 127.0.0.1
roles:
- role: collivier.xtesting
+ docker_tags:
+ - '2024.1':
+ branch: stable/2024.1
suites:
- container: xtesting
tests:
docker/core"}
arm_dirs=${arm_dirs-${amd64_dirs}}
arm64_dirs=${arm64_dirs-${amd64_dirs}}
-tag=${BRANCH:-latest}
+tag=${BRANCH:-stable/2024.1}
image="xtesting"
build_opts=(--pull=true --no-cache --force-rm=true)
find . -name Dockerfile -exec sed -i \
-e "s|alpine:3.17|arm64v8/alpine:3.17|g" {} +
find . -name Dockerfile -exec sed -i \
- -e "s|opnfv/xtesting|${repo}/xtesting:arm64-${tag}|g" {} +
+ -e "s|opnfv/xtesting:2024.1|${repo}/xtesting:arm64-${tag}|g" {} +
elif [[ ${arch} == arm ]]; then
find . -name Dockerfile -exec sed -i \
-e "s|alpine:3.17|arm32v6/alpine:3.17|g" {} +
find . -name Dockerfile -exec sed -i \
- -e "s|opnfv/xtesting|${repo}/xtesting:arm-${tag}|g" {} +
+ -e "s|opnfv/xtesting:2024.1|${repo}/xtesting:arm-${tag}|g" {} +
else
find . -name Dockerfile -exec sed -i \
- -e "s|opnfv/xtesting|${repo}/xtesting:amd64-${tag}|g" {} +
+ -e "s|opnfv/xtesting:2024.1|${repo}/xtesting:amd64-${tag}|g" {} +
fi
dirs=${arch}_dirs
for dir in ${!dirs}; do
FROM alpine:3.20
-ARG BRANCH=master
-ARG OPENSTACK_TAG=master
+ARG BRANCH=stable/2024.1
+ARG OPENSTACK_TAG=stable/2024.1
RUN apk -U upgrade && \
apk --no-cache add --update python3 py3-pip py3-wheel bash git mailcap libxml2 libxslt ansible && \
#!/bin/bash
download-frozen-image-v2.sh /data/docker/xtesting \
- opnfv/xtesting:latest
-git clone https://git.opnfv.org/functest-xtesting /home/debian/functest-xtesting
+ opnfv/xtesting:2024.1
+git init /home/debian/functest-xtesting && \
+(cd /home/debian/functest-xtesting && \
+ git fetch --tags https://git.opnfv.org/functest-xtesting stable/2024.1 && \
+ git checkout FETCH_HEAD) && \
chown -R 1000:1000 /home/debian/functest-xtesting
exit 0
usedevelop = True
deps =
-c{toxinidir}/upper-constraints.txt
- -chttps://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt
+ -chttps://opendev.org/openstack/requirements/raw/branch/stable/2024.1/upper-constraints.txt
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install {opts} {packages}