Skip to content

Commit 0cb6568

Browse files
committed
test/build-utils.sh: remove support for Debian Jessie
Jessie is EOL since June 30, 2020, so it's probably fine to assume it's no longer used. https://www.debian.org/News/2020/20200709 Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 7d48917 commit 0cb6568

1 file changed

Lines changed: 3 additions & 12 deletions

File tree

test/build-utils.sh

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,9 @@ fi
2828
# Activate gcloud service account.
2929
gcloud auth activate-service-account --key-file "${GOOGLE_APPLICATION_CREDENTIALS}" --project="${PROJECT}"
3030

31-
# Kubernetes test infra uses jessie and stretch.
32-
if cat /etc/os-release | grep jessie; then
33-
sh -c "echo 'deb http://ftp.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list"
34-
apt-get update
35-
apt-get install -y libseccomp2/jessie-backports
36-
apt-get install -y libseccomp-dev/jessie-backports
37-
else
38-
cat /etc/os-release
39-
apt-get update
40-
apt-get install -y libseccomp2
41-
apt-get install -y libseccomp-dev
42-
fi
31+
cat /etc/os-release
32+
apt-get update
33+
apt-get install -y libseccomp2 libseccomp-dev
4334

4435
# PULL_REFS is from prow.
4536
if [ ! -z "${PULL_REFS:-""}" ]; then

0 commit comments

Comments
 (0)