Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/curl/.cirrus.yml @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 # Cirrus CI configuration | |
| 2 # https://cirrus-ci.com/github/curl/curl | |
| 3 | |
| 4 task: | |
| 5 name: FreeBSD | |
| 6 freebsd_instance: | |
| 7 matrix: | |
| 8 image: freebsd-12-0-release-amd64 | |
| 9 image: freebsd-11-2-release-amd64 | |
| 10 image: freebsd-10-4-release-amd64 | |
| 11 | |
| 12 env: | |
| 13 CIRRUS_CLONE_DEPTH: 1 | |
| 14 MAKE_FLAGS: -j 2 | |
| 15 | |
| 16 pkginstall_script: | |
| 17 - pkg install -y autoconf automake libtool pkgconf brotli openldap-client heimdal libpsl libmetalink libssh2 openssh-portable libidn2 librtmp libnghttp2 nghttp2 stunnel | |
| 18 - pkg delete -y curl | |
| 19 configure_script: | |
| 20 - ./buildconf | |
| 21 - ./configure --prefix="${HOME}"/install --enable-debug --with-libssh2 --with-brotli --with-gssapi --with-libidn2 --enable-manual --enable-ldap --enable-ldaps --with-librtmp --with-libmetalink --with-libpsl --with-nghttp2 || { tail -300 config.log; false; } | |
| 22 compile_script: | |
| 23 - make V=1 | |
| 24 test_script: | |
| 25 # Some tests won't run if run as root so run them as another user. | |
| 26 # Make directories world writable so the test step can write wherever it needs. | |
| 27 - find . -type d -exec chmod 777 {} \; | |
| 28 # TODO: A number of tests are failing on different FreeBSD versions and so | |
| 29 # are disabled. This should be investigated. | |
| 30 - SKIP_TESTS='' | |
| 31 - if [ `uname -r` = "12.0-RELEASE" ] ; then SKIP_TESTS='!303 !304 !323 !504 !1242 !1243 !2002 !2003'; fi | |
| 32 - if [ `uname -r` = "11.2-RELEASE" ] ; then SKIP_TESTS='!303 !304 !310 !311 !312 !313 !504 !1082 !1242 !1243 !2002 !2003 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001'; fi | |
| 33 - if [ `uname -r` = "10.4-RELEASE" ] ; then SKIP_TESTS='!303 !304 !310 !311 !312 !313 !504 !1082 !1242 !1243 !2002 !2003 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001'; fi | |
| 34 - sudo -u nobody make V=1 TFLAGS="-n -a -p !flaky ${SKIP_TESTS}" test-nonflaky | |
| 35 install_script: | |
| 36 - make V=1 install |
