Attempt to parallel CI jobs

This commit is contained in:
Steve Karg
2019-10-19 15:17:43 -05:00
parent 4c132011fb
commit 6bb702f488
+16 -22
View File
@@ -1,25 +1,19 @@
language: c language: c
compiler:
- clang
- gcc
jobs: jobs:
include: - stage: demos-build
- stage: demos-build os: linux
os: linux compiler: gcc
compiler: gcc script: make clean all
script: make clean all - stage: gateway-build
- stage: gateway-build os: linux
os: linux compiler: gcc
compiler: gcc script: make clean gateway
script: make clean gateway - stage: unit-tests
- stage: unit-tests os: linux
os: linux compiler: gcc
compiler: gcc script: make clean test
script: make clean test - stage: lint
- stage: lint os: linux
os: linux compiler: clang
compiler: clang script: scan-build --status-bugs -analyze-headers -v make -j2 clean server
script: scan-build --status-bugs -analyze-headers -v make -j2 clean server