From b81bd5be8d5b403797dca4011560ae07969d52ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Mon, 13 Oct 2025 17:33:38 +0200 Subject: [PATCH] Take bashate results into account MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Id489a0e7d2e8ed5f0af99b3930c9bc39ddcce3e5 Signed-off-by: Cédric Ollivier --- build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 80f409976..f53b4f32c 100644 --- a/build.sh +++ b/build.sh @@ -18,7 +18,8 @@ build_opts="--pull=true --no-cache --force-rm=true" find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-core:2023.1|${repo}/functest-core:amd64-2023.1|g" {} + find . -name Dockerfile -exec sed -i \ - -e "s|opnfv/functest-smoke:2023.1|${repo}/functest-smoke:amd64-2023.1|g" {} + + -e "s|opnfv/functest-smoke:2023.1|${repo}/functest-smoke:amd64-2023.1|g" \ + {} + find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-benchmarking:2023.1|\ ${repo}/functest-benchmarking:amd64-2023.1|g" {} + @@ -39,7 +40,8 @@ find . -name Dockerfile -exec sed -i \ find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-core:2023.1|${repo}/functest-core:arm64-2023.1|g" {} + find . -name Dockerfile -exec sed -i \ - -e "s|opnfv/functest-smoke:2023.1|${repo}/functest-smoke:arm64-2023.1|g" {} + + -e "s|opnfv/functest-smoke:2023.1|${repo}/functest-smoke:arm64-2023.1|g" \ + {} + find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-benchmarking:2023.1|\ ${repo}/functest-benchmarking:arm64-2023.1|g" {} + -- 2.16.6