Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -737,9 +737,6 @@ jobs:
Focal:
deb_system: ubuntu
distro: focal
Groovy:
deb_system: ubuntu
distro: groovy
Hirsute:
deb_system: ubuntu
distro: hirsute
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/debian/test_deb_in_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apt install -y apt-transport-https git gcc python3-dev

# The distros that need libssl1.1
case ${DISTRO} in
bionic|buster|focal|groovy) apt install -y libssl1.1;;
bionic|buster|focal) apt install -y libssl1.1;;
Copy link
Member Author

@jiasli jiasli Aug 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ubuntu:hirsute has libssl1.1 installed by default.

$ docker run --rm ubuntu:hirsute /usr/bin/apt list --installed | grep libssl

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

libssl1.1/now 1.1.1j-1ubuntu3 amd64 [installed,local]

So no need to add hirsute here.

*) :;;
esac

Expand Down