The make build in the open source version uses autoconf, which is set up to expect a project that follows the gnu standard.
13 lines
163 B
YAML
13 lines
163 B
YAML
language: cpp
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
os:
|
|
- linux
|
|
sudo: false
|
|
before_install:
|
|
- echo $LANG
|
|
- echo $LC_ALL
|
|
script:
|
|
- ./autogen.sh && ./configure && make -j 4 check
|