.cirrus.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Cirrus CI configuration
  2. # https://cirrus-ci.com/github/curl/curl
  3. task:
  4. name: FreeBSD
  5. freebsd_instance:
  6. matrix:
  7. # There isn't a stable 13.0 image yet (2019-10)
  8. image_family: freebsd-13-0-snap
  9. image_family: freebsd-12-0
  10. # The stable 11.3 image causes "Agent is not responding" so use a snapshot
  11. image_family: freebsd-11-3-snap
  12. image_family: freebsd-10-4
  13. env:
  14. CIRRUS_CLONE_DEPTH: 10
  15. MAKE_FLAGS: -j 2
  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. # blackhole?
  26. - sysctl net.inet.tcp.blackhole
  27. # make sure we don't run blackhole != 0
  28. - sudo sysctl net.inet.tcp.blackhole=0
  29. # Some tests won't run if run as root so run them as another user.
  30. # Make directories world writable so the test step can write wherever it needs.
  31. - find . -type d -exec chmod 777 {} \;
  32. # TODO: A number of tests are failing on different FreeBSD versions and so
  33. # are disabled. This should be investigated.
  34. - SKIP_TESTS=''
  35. - uname -r
  36. - case `uname -r` in
  37. 13.0*) SKIP_TESTS='!303 !304 !323 !504 !1242 !1243 !2002 !2003';;
  38. 12.0*) SKIP_TESTS='!303 !304 !323 !504 !1242 !1243 !2002 !2003';;
  39. 11.3*) SKIP_TESTS='!303 !304 !504 !1242 !1243 !2002 !2003';;
  40. 10.4*) SKIP_TESTS='!303 !304 !310 !311 !312 !313 !504 !1082 !1242 !1243 !2002 !2003 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001';;
  41. esac
  42. - sudo -u nobody make V=1 TFLAGS="-n -a -p !flaky ${SKIP_TESTS}" test-nonflaky
  43. install_script:
  44. - make V=1 install