mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-09-08 12:01:54 -04:00
20 lines
355 B
YAML
20 lines
355 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq cppcheck
|
|
|
|
# using a symbolic link to get the "make test" to work as if launched from the root directorys
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
- ln -s ../examples examples
|
|
|
|
script: make && ctest --output-on-failure
|
|
|