aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml8
-rw-r--r--build.sh8
-rw-r--r--docker/core/Dockerfile4
-rw-r--r--docker/mts/Dockerfile2
-rw-r--r--tox.ini2
5 files changed, 12 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index c1adf478..e39fb5aa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,8 +43,8 @@ jobs:
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-zed \
+ --target ${DOCKER_USERNAME}/xtesting:zed
- stage: build xtesting-mts images
script: sudo -E bash build.sh
env:
@@ -71,5 +71,5 @@ jobs:
script: >
sudo manifest-tool push from-args \
--platforms linux/amd64,linux/arm,linux/arm64 \
- --template ${DOCKER_USERNAME}/xtesting-mts:ARCH-latest \
- --target ${DOCKER_USERNAME}/xtesting-mts:latest
+ --template ${DOCKER_USERNAME}/xtesting-mts:ARCH-zed \
+ --target ${DOCKER_USERNAME}/xtesting-mts:zed
diff --git a/build.sh b/build.sh
index e7056514..fe88f8bc 100644
--- a/build.sh
+++ b/build.sh
@@ -17,7 +17,7 @@ docker/core \
docker/mts"}
arm_dirs=${arm_dirs-${amd64_dirs}}
arm64_dirs=${arm64_dirs-${amd64_dirs}}
-tag=${BRANCH:-latest}
+tag=${BRANCH:-stable/yoga}
image="xtesting"
build_opts=(--pull=true --no-cache --force-rm=true)
@@ -26,15 +26,15 @@ for arch in ${arch}; do
find . -name Dockerfile -exec sed -i \
-e "s|alpine:3.16|arm64v8/alpine:3.16|g" {} +
find . -name Dockerfile -exec sed -i \
- -e "s|opnfv/xtesting|${repo}/xtesting:arm64-${tag}|g" {} +
+ -e "s|opnfv/xtesting:zed|${repo}/xtesting:arm64-${tag}|g" {} +
elif [[ ${arch} == arm ]]; then
find . -name Dockerfile -exec sed -i \
-e "s|alpine:3.16|arm32v6/alpine:3.16|g" {} +
find . -name Dockerfile -exec sed -i \
- -e "s|opnfv/xtesting|${repo}/xtesting:arm-${tag}|g" {} +
+ -e "s|opnfv/xtesting:zed|${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:zed|${repo}/xtesting:amd64-${tag}|g" {} +
fi
dirs=${arch}_dirs
for dir in ${!dirs}; do
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index f8d21c22..61246df4 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -1,7 +1,7 @@
FROM alpine:3.16
-ARG BRANCH=master
-ARG OPENSTACK_TAG=master
+ARG BRANCH=stable/zed
+ARG OPENSTACK_TAG=stable/zed
RUN apk -U upgrade && \
apk --no-cache add --update python3 py3-pip py3-wheel bash git mailcap libxml2 libxslt ansible && \
diff --git a/docker/mts/Dockerfile b/docker/mts/Dockerfile
index 502cf754..7d0297f1 100644
--- a/docker/mts/Dockerfile
+++ b/docker/mts/Dockerfile
@@ -1,4 +1,4 @@
-FROM opnfv/xtesting
+FROM opnfv/xtesting:zed
ARG MTS_TAG=6.6.21
ARG APP_FOLDER=/opt/mts
diff --git a/tox.ini b/tox.ini
index d6924538..771e1acb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,7 +7,7 @@ pip_version = pip==20.2.4
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/zed/upper-constraints.txt
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install {opts} {packages}