.cirrus.yml revision 5392f7a3
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 32e59d2d3264e4e104b355ef73663b8b79ac4093
12        - patch -p1 -i ../patches/boringssl-meds.patch
13        - cmake .
14        - make
15        - cd -
16    script:
17        - git submodule init
18        - git submodule update
19        - cmake -DBORINGSSL_DIR=$PWD/boringssl .
20        - make
21        - make test
22