Attempt to install s3cmd on Debian 10 Buster from Backports

This commit is contained in:
Pavel Odintsov 2023-05-22 22:53:56 +01:00
parent d53a3545f2
commit 6b6bc071c2

View File

@ -372,8 +372,8 @@ workflows:
distro_version: "10"
name: "debian10"
distro_name: "debian"
# We do it this way because this version of Debian has no s3cmd in official repos for some reasons: https://packages.debian.org/sid/utils/s3cmd
s3cmd_install_command: "apt-get install -y python3-pip; pip3 install s3cmd"
# We do it this way because this version of Debian has no s3cmd in official repos for some reasons: https://packages.debian.org/buster-backports/s3cmd and then we install it from backports
s3cmd_install_command: "echo 'deb http://deb.debian.org/debian buster-backports main' | tee /etc/apt/sources.list.d/buster_backports.list; apt-get update; apt-get install -t bullseye-backports -y s3cmd"
- build_debian:
docker_image: "debian:bullseye"
distro_version: "11"