]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CI/cirrus: disable python install on FreeBSD
authorStefan Eissing <stefan@eissing.org>
Mon, 21 Aug 2023 12:05:38 +0000 (14:05 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 21 Aug 2023 17:46:00 +0000 (19:46 +0200)
- python cryptography package does not build build FreeBSD
- install just mentions "error"
- this gets the build and the main test suite going again

Closes #11705

.cirrus.yml

index 0738c4573e385da5f9931e75b451d1c83ad8c523..a9eb1400b65fb19fe0d3a17ae5670bf5fae4e1fb 100644 (file)
@@ -61,9 +61,11 @@ freebsd_task:
     - pkg delete -y curl
     - python -m ensurepip --default-pip
     - python -m pip install --upgrade pip
-    - pip install "cryptography<3.2"
-    - pip install "pyOpenSSL<20.0"
-    - pip install "impacket"
+    # PYTHON/RUST/CRYPTO FAIL
+    # this currently fails with "error" in building rust crypto for python
+    #- 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
@@ -87,6 +89,7 @@ freebsd_task:
     - find . -type d -exec chmod 777 {} \;
     # The OpenSSH server instance for the testsuite cannot be started on FreeBSD,
     # therefore the SFTP and SCP tests are disabled right away from the beginning.
+    #
     - sudo -u nobody make V=1 TFLAGS="-n !SFTP !SCP" test-ci
   install_script:
     - make V=1 install