Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: Install python2 for ubuntu (python3 now default) #420

Merged
merged 1 commit into from
Mar 10, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/generic-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ run () {
apt-get update
apt-mark hold php* google* libobjc* libpq* libidn* postgresql* python3-httplib2 samba* >/dev/null
apt-get upgrade -y
apt-get install -y binutils-dev libcurl4-openssl-dev libdw-dev libiberty-dev gcc g++ make cmake libssl-dev git python3 $EXTRA_PACKAGES
apt-get install -y binutils-dev libcurl4-openssl-dev libdw-dev libiberty-dev gcc g++ make cmake libssl-dev git python3 python2 $EXTRA_PACKAGES
export PATH="${PATH}:${HOME}/kcov/bin"
mkdir build build-tests
cd build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-i386.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ root-groups=root
preserve-environment=true
personality=linux32" >> /etc/schroot/schroot.conf

debootstrap --variant=buildd --arch i386 focal /chroots/i386 http://archive.ubuntu.com/ubuntu/
debootstrap --variant=buildd --arch i386 --components=main,universe jammy /chroots/i386 http://archive.ubuntu.com/ubuntu/
Loading