533ab3c53e
Relevant vendor changes: PR #905: Support for Zstandard read and write filters PR #922: Avoid overflow when reading corrupt cpio archive Issue #935: heap-based buffer overflow in xml_data (CVE-2017-14166) OSS-Fuzz 2936: Place a limit on the mtree line length OSS-Fuzz 2394: Ensure that the ZIP AES extension header is large enough OSS-Fuzz 573: Read off-by-one error in RAR archives (CVE-2017-14502) Security: CVE-2017-14166, CVE-2017-14502
31 lines
492 B
YAML
31 lines
492 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 lzop lz4 zstd; fi
|
|
script:
|
|
- build/ci_build.sh
|