11 lines
298 B
YAML
11 lines
298 B
YAML
language: c
|
|
# safelist
|
|
os: linux
|
|
arch: amd64
|
|
branches:
|
|
only:
|
|
- master
|
|
script:
|
|
- ./configure --with-restconf=fcgi && make && sudo make install && (cd example; make; sudo make install) && (cd util; make; sudo make install) && (cd test; make all)
|
|
before_script:
|
|
- ./test/travis/before_script.sh
|