20 lines
246 B
YAML
20 lines
246 B
YAML
|
language: c
|
||
|
compiler:
|
||
|
- clang
|
||
|
- gcc
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
script:
|
||
|
- mkdir build
|
||
|
- cd build
|
||
|
- cmake ..
|
||
|
- make
|
||
|
- make test
|
||
|
notifications:
|
||
|
email:
|
||
|
recipients:
|
||
|
- build-status@libzip.org
|
||
|
on_success: change
|
||
|
on_failure: change
|