diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-12-22 20:41:59 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-12-22 20:41:59 +0100 |
commit | 869ab511f7d63e5f3497e4c358cec85cab9eee74 (patch) | |
tree | 65eecc98c3c012bdfbe7fb2f5e9b6b6e2efa006e | |
parent | 398a4417fe313b896860e568bf65bb3813c0df84 (diff) |
Add missing sudo calls
It modifies airship, cntt and xtesting jjbs.
Change-Id: If9f8d301262764312a46b7fa6e24220d96fc30bf
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | jjb/airship/airship.yaml | 2 | ||||
-rw-r--r-- | jjb/airship/cntt.yaml | 2 | ||||
-rw-r--r-- | jjb/functest/xtesting.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/jjb/airship/airship.yaml b/jjb/airship/airship.yaml index b343e80a8..3c1a7daff 100644 --- a/jjb/airship/airship.yaml +++ b/jjb/airship/airship.yaml @@ -338,7 +338,7 @@ else image={repo}:{port}/{container}:{functest_tag} fi - docker run --rm \ + sudo docker run --rm \ -e S3_ENDPOINT_URL=https://storage.googleapis.com \ -e S3_DST_URL=s3://artifacts.opnfv.org/airship \ -e HTTP_DST_URL=http://artifacts.opnfv.org/airship/ \ diff --git a/jjb/airship/cntt.yaml b/jjb/airship/cntt.yaml index 94cfd4bf0..2d46a6a08 100644 --- a/jjb/airship/cntt.yaml +++ b/jjb/airship/cntt.yaml @@ -365,7 +365,7 @@ else image={repo}:{port}/{container}:{functest_tag} fi - docker run --rm \ + sudo docker run --rm \ -e S3_ENDPOINT_URL=https://storage.googleapis.com \ -e S3_DST_URL=s3://artifacts.opnfv.org/airship \ -e HTTP_DST_URL=http://artifacts.opnfv.org/airship/ \ diff --git a/jjb/functest/xtesting.yaml b/jjb/functest/xtesting.yaml index 9a660ef46..3799eb782 100644 --- a/jjb/functest/xtesting.yaml +++ b/jjb/functest/xtesting.yaml @@ -218,7 +218,7 @@ else image={repo}:{port}/{container}:{tag} fi - docker run --rm \ + sudo docker run --rm \ -e S3_ENDPOINT_URL=https://storage.googleapis.com \ -e S3_DST_URL=s3://artifacts.opnfv.org/xtesting \ -e HTTP_DST_URL=http://artifacts.opnfv.org/xtesting \ |