Important vendor changes: PR #993: Chdir to -C directory for metalog processing OSS-Fuzz #4969: Check size of the extended time field in zip archives PR #973: Record informational compression level in gzip header
31 lines
487 B
YAML
31 lines
487 B
YAML
language: C
|
|
sudo: false
|
|
dist: trusty
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libacl1-dev
|
|
- libbz2-dev
|
|
- liblzma-dev
|
|
- libzip-dev
|
|
- lzop
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
env:
|
|
- BUILD_SYSTEM=cmake
|
|
- BUILD_SYSTEM=autotools
|
|
matrix:
|
|
exclude:
|
|
- os: osx
|
|
compiler: gcc
|
|
before_install:
|
|
- if [ `uname` = "Darwin" ]; then brew update; fi
|
|
install:
|
|
- if [ `uname` = "Darwin" ]; then brew install xz lz4 zstd; fi
|
|
script:
|
|
- build/ci_build.sh
|