Skip to content

ci: Install pip #70

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

Merged
merged 1 commit into from
Jun 23, 2023
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
1 change: 1 addition & 0 deletions packer/freebsd.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ build {
krb5 \
openldap25-client \
openldap25-server
python3 -m ensurepip --upgrade
pkg clean -y
rm -fr /usr/ports /usr/src /usr/lib/debug
cat /etc/rc.conf
Expand Down
4 changes: 4 additions & 0 deletions scripts/bsd/netbsd-prep-postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ pkgin -y install \
flex \
pkgconf \
python39 \
py39-pip \
icu \
lz4 \
libxslt \
tcl \
zstd

echo "alias python3=python3.9" >> ~/.bashrc
echo "alias pip3=pip3.9" >> ~/.bashrc

# Set kernel parameters for running postgres tests
echo "sysctl -w kern.ipc.semmni=2048" >> /etc/rc.local
echo "sysctl -w kern.ipc.semmns=32768" >> /etc/rc.local
1 change: 1 addition & 0 deletions scripts/bsd/openbsd-prep-postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pkg_add -I \
login_krb5 \
openldap-client--gssapi \
openldap-server--gssapi
python3 -m ensurepip --upgrade

#####
# Add 'noatime' and 'softdep' to the mount points
Expand Down
1 change: 1 addition & 0 deletions scripts/linux_debian_install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ apt-get -y install --no-install-recommends \
g++ \
gcc \
gettext \
python3-pip \
\
libio-pty-perl \
libipc-run-perl \
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows_install_mingw64.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ msys 'pacman --noconfirm -Scc' ;

echo 'installing packages' ;
msys 'pacman -S --needed --noconfirm git bison flex make diffutils \
ucrt64/mingw-w64-ucrt-x86_64-{ccache,gcc,icu,libxml2,libxslt,lz4,make,meson,perl,pkg-config,zlib}' ;
ucrt64/mingw-w64-ucrt-x86_64-{ccache,gcc,icu,libxml2,libxslt,lz4,make,meson,perl,pkg-config,python-pip,zlib}' ;
msys 'pacman -Scc --noconfirm'

# Install perl modules to enable tap tests
Expand Down