diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-08-12 13:07:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-08-12 13:07:43 +0000 |
commit | a13353fe3888bba28ba1e1107021f6fdcd6c3dba (patch) | |
tree | 360091b5b51049fab9634f8105eb8154c4be4b3a /jjb/functest/functest-kubernetes.yaml | |
parent | 1c00c41d7032f9c77230abd35a415a79d4a2ad17 (diff) | |
parent | 30ce9c78e52dbc3e73bc483f37d791b5de9f0566 (diff) |
Merge "Enforce DEBIAN_FRONTEND=noninteractive"
Diffstat (limited to 'jjb/functest/functest-kubernetes.yaml')
-rw-r--r-- | jjb/functest/functest-kubernetes.yaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/jjb/functest/functest-kubernetes.yaml b/jjb/functest/functest-kubernetes.yaml index d090ab91b..44690adc9 100644 --- a/jjb/functest/functest-kubernetes.yaml +++ b/jjb/functest/functest-kubernetes.yaml @@ -737,10 +737,11 @@ builders: - shell: | set +x - apt-get update && apt-get install \ - software-properties-common gpg -y + apt-get update && DEBIAN_FRONTEND=noninteractive \ + apt-get install software-properties-common gpg -y add-apt-repository -y ppa:deadsnakes/ppa - apt-get update && apt-get install \ + apt-get update && DEBIAN_FRONTEND=noninteractive \ + apt-get install \ python3.9 python3.9-dev python3.9-distutils \ python3.8 python3.8-dev python3.8-distutils \ python3.7 python3.7-dev python3.6 python3.6-dev \ @@ -1180,7 +1181,8 @@ name: functest-kubernetes-trivy builders: - shell: | - apt-get update && apt-get install curl -y + apt-get update && DEBIAN_FRONTEND=noninteractive \ + apt-get install curl -y curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b . if [ "{repo}" = "_" ]; then |