19 lines
370 B
YAML
19 lines
370 B
YAML
language: c
|
|
|
|
compiler: gcc
|
|
|
|
jobs:
|
|
- include:
|
|
- stage: demos-build
|
|
os: linux
|
|
compiler: gcc
|
|
script: make clean all
|
|
- 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
|