aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-08-02 12:14:16 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-08-02 13:21:51 +0200
commit9e1e91caba0f9c3a2b5c6874ea0277c86e756806 (patch)
tree1b0eb7c90c31a8d1206e7e6a84b0dfd35f81d96d /build.sh
parent8c856578b616ce78a17a78a58c03b340a86999a8 (diff)
Add functest-features based on Alpine
It integrates the next testcases: - bgpvpn - security_scan - functest-odl-sfc - barometercollectd It also modifies several cmds in the former testcases.yaml to ensure backward compatibility. Depends-On: I75aaf950f7b072c142fa9894cef7ef7f057adac3 Depends-On: I50219cad42bf0e085c2edf2e1abe149c2e057a99 Change-Id: Idf3d6b4a769edd1a5401748886e0ed64d4f5f281 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index dbc79e0d3..c7efc6384 100644
--- a/build.sh
+++ b/build.sh
@@ -7,7 +7,7 @@ repo=${repo:-opnfv}
(cd docker && docker build -t "${repo}/functest" .)
docker push "${repo}/functest"
-for dir in docker/core docker/healthcheck docker/smoke; do
+for dir in docker/core docker/healthcheck docker/smoke docker/features; do
(cd ${dir} && docker build -t "${repo}/functest-${dir##**/}" .)
docker push "${repo}/functest-${dir##**/}"
done