asio/.cirrus.yml
Christopher Kohlhoff eb61fc9b93 Test on FreeBSD 12.2.
2021-02-24 22:54:52 +11:00

17 lines
278 B
YAML

freebsd_instance:
image_family: freebsd-12-2
cpu: 1
env:
CXXFLAGS: -std=c++14 -Wall -Wextra -O2
task:
install_script:
- pkg install -y autoconf automake
build_script:
- cd asio
- ./autogen.sh
- ./configure --with-boost=no
- make
- make check