this patch adds building on ubuntu bionic that has a newer gcc while keeping ubuntu xenial (default on travis-ci) it also adds macosx since it was very easy to add and it's a platform we can build for
15 lines
189 B
YAML
15 lines
189 B
YAML
jobs:
|
|
include:
|
|
- dist: xenial
|
|
- dist: bionic
|
|
- os: osx
|
|
|
|
language: c
|
|
|
|
script:
|
|
- mkdir build
|
|
- pushd build
|
|
- cmake .. -DCMAKE_BUILD_TYPE=Release
|
|
- make install
|
|
- popd
|