diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-02-11 09:56:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-02-11 09:56:48 +0000 |
commit | 39aa635e75640cceddc55bc85ced7e482a865857 (patch) | |
tree | 65f977dcaafd474af4c3d3e1f5f4c49fb6e8e859 | |
parent | 0aa470d1a0c7c32f60cadd0e781470073166c6a0 (diff) | |
parent | 3ce2b537d6cbafe7f50dab0b1f6e689614b737ec (diff) |
Merge "Add missing sudo"
-rw-r--r-- | jjb/functest/xtesting.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/functest/xtesting.yaml b/jjb/functest/xtesting.yaml index f6041b201..c9b37a8dc 100644 --- a/jjb/functest/xtesting.yaml +++ b/jjb/functest/xtesting.yaml @@ -406,9 +406,9 @@ builders: - shell: | set +x - sudo apt-get update && apt-get install software-properties-common gpg -y + sudo apt-get update && sudo apt-get install software-properties-common gpg -y sudo add-apt-repository -y ppa:deadsnakes/ppa - sudo apt-get update && apt-get install python3.8 python3.8-dev \ + sudo apt-get update && sudo apt-get install python3.8 python3.8-dev \ python3.8-distutils \ python3.7 python3.7-dev python3.6 python3.6-dev \ python python-dev python3-pip enchant -y @@ -642,7 +642,7 @@ name: xtesting-trivy builders: - shell: | - apt-get update && apt-get install curl + sudo apt-get update && sudo apt-get install curl curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sudo sh -s -- -b . if [ "{repo}" = "_" ]; then image={container}:{tag} |