diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-08-09 02:48:28 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-08-09 02:48:28 +0200 |
commit | abc271b823967f776a67f8132cdb8d07c8fbb567 (patch) | |
tree | df6706fce076ecb5a6ddb135a73e9af510dc7865 | |
parent | e66323f1e715f62820b8d8ad1f917bebacf7c896 (diff) |
Fix tag regex
Change-Id: If2ce41ef2e6be3e8c4a2a7630feaa9d5089c471f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | jjb/functest/functest.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/functest/functest.yaml b/jjb/functest/functest.yaml index 19752cc25..5b87c59c7 100644 --- a/jjb/functest/functest.yaml +++ b/jjb/functest/functest.yaml @@ -152,7 +152,7 @@ image={repo}:{port}/{container}:{tag} fi volumes="" - if [ "{tag}" = "hunter" ]; then + if [[ "{tag}" =~ "hunter" ]]; then volumes=-v /usr/bin/qemu-arm-static:/usr/bin/qemu-arm-static \ -v /usr/bin/qemu-aarch64-static:/usr/bin/qemu-aarch64-static fi |