.cirrus.yml revision 4947ba95
1freebsd_instance: 2 image: freebsd-11-2-release-amd64 3 4task: 5 install_script: 6 - pkg install -y cmake libevent git go 7 - git clone https://boringssl.googlesource.com/boringssl 8 - cd boringssl 9 # This is so that both GQUIC and IETF branches build. Just picking 10 # a known good revision: 11 - git checkout 49de1fc2910524c888866c7e2b0db1ba8af2a530 12 - cmake . 13 - make 14 - cd - 15 script: 16 - git submodule init 17 - git submodule update 18 - cmake -DBORINGSSL_DIR=$PWD/boringssl . 19 - make 20 - make test 21