ObjFW  .cirrus.yml at 98f0907d36e6738cb7d7280a27b631591130bb7af7bc968388ad6b19ab47cd05

File .cirrus.yml artifact 6338675a88 part of check-in 98f0907d36e6738cb7d7280a27b631591130bb7af7bc968388ad6b19ab47cd05


task:
  name: FreeBSD 12.1
  freebsd_instance:
    image_family: freebsd-12-1
  install_script:
    pkg install -y autoconf automake
  shared_script:
    - ./autogen.sh
    - ./configure
    - make -j4 install
  static_script:
    - ./autogen.sh
    - ./configure --disable-shared
    - make -j4 install
  shared_seluid24_script:
    - ./autogen.sh
    - ./configure --enable-seluid24
    - make -j4 install
  static_seluid24_script:
    - ./autogen.sh
    - ./configure --disable-shared --enable-seluid24
    - make -j4 install