8e86d3576b
Vendor bugfixes: PR 826: OpenSSL 1.1 support PR 830, 831, 833: Spelling fixes OSS-Fuzz 227, 230, 239: Fix possible memory leak in archive_read_free() OSS-Fuzz 237: Fix heap buffer overflow when reading invalid ar archives
24 lines
478 B
YAML
24 lines
478 B
YAML
language: C
|
|
sudo: required
|
|
dist: trusty
|
|
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
|
|
- if [ `uname` = "Linux" ]; then sudo apt-get install -y libbz2-dev libzip-dev liblzma-dev liblzo2-dev; fi
|
|
install:
|
|
- if [ `uname` = "Darwin" ]; then brew install xz lzo lz4; fi
|
|
script:
|
|
- build/ci_build.sh
|