litespeed-quic/.travis.yml
Dmitri Tikhonov 4947ba950d Release 2.4.5
- [OPTIMIZATION]: flush encoder stream only when necessary.
- [BUGFIX] Use ls-qpack v0.10.2 for new API -- and for a bug fix.
- [BUGFIX] Typo in IETF conn SETTINGS writer.
- Use latest BoringSSL.
2019-10-08 15:54:01 -04:00

36 lines
871 B
YAML

language: c
matrix:
include:
- name: Linux (gcc)
os: linux
compiler: gcc
addons:
apt:
packages:
- libevent-dev
- name: Linux (clang)
os: linux
compiler: clang
addons:
apt:
packages:
- libevent-dev
- name: macOS
os: osx
sudo: false
before_script:
- 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 49de1fc2910524c888866c7e2b0db1ba8af2a530
- cmake .
- make
- cd -
- git submodule init
- git submodule update
- cmake -DBORINGSSL_DIR=$PWD/boringssl .
script:
# Now build lsquic-client
- make
- make test