mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-14 23:50:03 +08:00
20 lines
300 B
YAML
20 lines
300 B
YAML
language: cpp
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
- sudo apt-get install libboost-dev libboost-all-dev
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ../
|
|
- make
|
|
- make test
|
|
notifications:
|
|
recipients:
|
|
- jason@emptycrate.com
|
|
email:
|
|
on_success: always
|
|
on_failure: always
|
|
|