# Cirrus CI configuration task: name: FreeBSD freebsd_instance: cpu: 4 matrix: image: freebsd-12-1-release-amd64 # image: freebsd-11-2-release-amd64 # image: freebsd-10-4-release-amd64 env: CIRRUS_CLONE_DEPTH: 1 MAKE_FLAGS: -j 4 # Disable cache: its upload can take up to 30 minutes! #cache: # folder: $HOME/.ccache pkginstall_script: - pkg install -y autoconf automake libtool pkgconf sqlite3 tiff ccache gmake configure_script: - ./autogen.sh - ./configure --disable-static compile_script: - gmake $(MAKE_FLAGS) test_script: - gmake check $(MAKE_FLAGS)