asio/.cirrus.yml

17 lines
278 B
YAML
Raw Normal View History

freebsd_instance:
2021-02-24 11:54:52 +00:00
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