Files
bacnet_stack/.travis.yml
T
2020-01-15 08:39:56 -06:00

27 lines
556 B
YAML

language: c
compiler:
- gcc
- clang
jobs:
- include:
- stage: demos-build
os: linux
compiler: gcc
script: make clean all
- stage: demos-build-cmake
os: linux
compiler: gcc
script: mkdir build && cd build && cmake .. && cmake --build . --clean-first
- stage: gateway-build
os: linux
compiler: gcc
script: make clean gateway
- stage: lint
os: linux
compiler: clang
# script: scan-build --status-bugs -analyze-headers -v make -j2 clean server
script: skip