mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-09-08 03:51:36 -04:00
16 lines
255 B
YAML
16 lines
255 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
# 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 && make test
|
|
|