summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorPhilip H <47042125+pheiduck@users.noreply.github.com>2022-05-02 14:39:33 +0200
committerDaniel Gustafsson <daniel@yesql.se>2022-05-02 14:39:33 +0200
commit9ea16971fd863848aad25509128e466e3436325f (patch)
tree53b935e3cdb2812eb9986ec537b9270cb0e4e8f0 /.cirrus.yml
parent6df9d9b46c363a787c10378603f1223931d9ebcc (diff)
downloadcurl-9ea16971fd863848aad25509128e466e3436325f.tar.gz
cirrus: Use pip for Python packages on FreeBSD
Using pip instead of easy_install is more in line with how other CI images are being maintained. Closes: #8783 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 6c0a011ae..a2909dede 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -40,11 +40,11 @@ freebsd_task:
pkginstall_script:
- pkg update -f
- - pkg install -y autoconf automake libtool pkgconf brotli openldap24-client heimdal libpsl libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel
+ - pkg install -y autoconf automake libtool pkgconf brotli openldap24-client heimdal libpsl libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel py38-pip
- pkg delete -y curl
- - easy_install "cryptography<3.2"
- - easy_install "pyOpenSSL<20.0"
- - easy_install "impacket"
+ - pip install "cryptography<3.2"
+ - pip install "pyOpenSSL<20.0"
+ - pip install "impacket"
configure_script:
- autoreconf -fi
# Building with the address sanitizer is causing unexplainable test issues due to timeouts