litespeed-quic/.cirrus.yml
2020-04-01 14:41:35 -04:00

20 lines
595 B
YAML

freebsd_instance:
image: freebsd-11-2-release-amd64
task:
install_script:
- pkg install -y cmake libevent git go
- git clone https://boringssl.googlesource.com/boringssl
- cd boringssl
# This is so that both GQUIC and IETF branches build. Just picking
# a known good revision:
- git checkout bfe527fa35735e8e045cbfb42b012e13ca68f9cf
- cmake .
- make
- cd -
script:
- git submodule init
- git submodule update
- cmake -DBORINGSSL_DIR=$PWD/boringssl .
- make
- make test