diff options
author | 2022-05-10 22:04:23 +0200 | |
---|---|---|
committer | 2023-03-27 15:06:35 +0200 | |
commit | f4e7eb0eb220b4504c49470c894e8ffcf483f978 (patch) | |
tree | f7be45b5320c304395037c1cdc6900bd28c6d312 /build.sh | |
parent | d00120571b209d5e5ec328ea97369245eb171e09 (diff) |
Stop bashing functest scripts
Though bash is a good interactive user shell
and apart portability concerns,
many UN*X systems and GNU+Linux distributions now prefers Almquist
or Kornshell variants for scripting in order to improve the system
performance and maintenability.
https://wiki.ubuntu.com/DashAsBinSh
https://mywiki.wooledge.org/Bashism
https://en.wikipedia.org/wiki/Almquist_shell
Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com>
Change-Id: I32c5490f9eab54e6cac594f3eac1e392edf8b272
(cherry picked from commit b9fedb6868306a6e3145b7ee851ea3a84353df9c)
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e @@ -13,7 +13,7 @@ docker/smoke-cntt \ docker/benchmarking-cntt"} arm_dirs=${arm_dirs-${amd64_dirs}} arm64_dirs=${arm64_dirs-${amd64_dirs}} -build_opts=("--pull=true" --no-cache "--force-rm=true") +build_opts="--pull=true --no-cache --force-rm=true" find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-core:zed|${repo}/functest-core:amd64-zed|g" {} + @@ -24,7 +24,7 @@ find . -name Dockerfile -exec sed -i \ ${repo}/functest-benchmarking:amd64-zed|g" {} + for dir in ${amd64_dirs}; do (cd "${dir}" && - docker build "${build_opts[@]}" \ + docker build $build_opts \ -t "${repo}/functest-${dir##**/}:amd64-zed" .) docker push "${repo}/functest-${dir##**/}:amd64-zed" [ "${dir}" != "docker/core" ] && @@ -44,7 +44,7 @@ find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-benchmarking:zed|\ ${repo}/functest-benchmarking:arm64-zed|g" {} + for dir in ${arm64_dirs}; do - (cd "${dir}" && docker build "${build_opts[@]}" \ + (cd "${dir}" && docker build $build_opts \ -t "${repo}/functest-${dir##**/}:arm64-zed" .) docker push "${repo}/functest-${dir##**/}:arm64-zed" [ "${dir}" != "docker/core" ] && @@ -65,7 +65,7 @@ find . -name Dockerfile -exec sed -i \ -e "s|opnfv/functest-benchmarking:zed|\ ${repo}/functest-benchmarking:arm-zed|g" {} + for dir in ${arm_dirs}; do - (cd "${dir}" && docker build "${build_opts[@]}" \ + (cd "${dir}" && docker build $build_opts \ -t "${repo}/functest-${dir##**/}:arm-zed" .) docker push "${repo}/functest-${dir##**/}:arm-zed" [ "${dir}" != "docker/core" ] && |