litespeed-quic/.cirrus.yml
Dmitri Tikhonov 2c252f915b Update BoringSSL to later version, need this for ID-28
In ID-28, using TLS middlebox compatibility mode is forbidden and
we need a later version of BoringSSL for it to do the right thing.
This also means we had to update our code, because BoringSSL's QUIC
API has changed.
2020-06-12 10:00:17 -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 251b5169fd44345f455438312ec4e18ae07fd58c
- cmake .
- make
- cd -
script:
- git submodule init
- git submodule update
- cmake -DBORINGSSL_DIR=$PWD/boringssl .
- make
- make test