Run unittest in CI

Also general CI config update

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2019-03-21 20:22:10 +00:00
parent aa37c4f4ca
commit a2cc81c572
No known key found for this signature in database
GPG Key ID: 37C999F617EA1A47
1 changed files with 30 additions and 15 deletions

View File

@ -1,8 +1,8 @@
defaults: &defaults
docker:
- image: yshui/comptonci
cached-checkout: &ccheckout
just-build: &build
executors:
e:
docker:
- image: yshui/comptonci
working_directory: "/tmp/workspace"
version: 2.1
commands:
@ -27,10 +27,10 @@ commands:
- ".git"
- run:
name: config
command: CC=<< parameters.cc >> meson << parameters.build-config >> --werror . build
command: CC=<< parameters.cc >> meson << parameters.build-config >> -Dunittest=true --werror . build
- run:
name: build
command: ninja -C build
command: ninja -vC build
test-xvfb:
steps:
- run:
@ -40,45 +40,57 @@ commands:
jobs:
basic:
<<: *defaults
executor: e
steps:
- build:
build-config: -Dbuild_docs=true
- persist_to_workspace:
root: .
paths:
- .
test:
executor: e
steps:
- attach_workspace:
at: /tmp/workspace
- run:
name: test
command: ninja -vC /tmp/workspace/build test
minimal:
<<: *defaults
executor: e
steps:
- build:
build-config: -Dopengl=false -Ddbus=false -Dregex=false -Dconfig_file=false
nogl:
<<: *defaults
executor: e
steps:
- build:
build-config: -Dopengl=false
noregex:
<<: *defaults
executor: e
steps:
- build:
build-config: -Dregex=false
clang_basic:
<<: *defaults
executor: e
steps:
- build:
cc: clang-6.0
build-config:
clang_minimal:
<<: *defaults
executor: e
steps:
- build:
cc: clang-6.0
build-config: -Dopengl=false -Ddbus=false -Dregex=false -Dconfig_file=false
clang_nogl:
<<: *defaults
executor: e
steps:
- build:
cc: clang-6.0
build-config: -Dopengl=false
clang_noregex:
<<: *defaults
executor: e
steps:
- build:
cc: clang-6.0
@ -93,6 +105,9 @@ workflows:
- clang_minimal
- nogl
- clang_nogl
- test:
requires:
- basic
# - test-xvfb
# vim: set sw=2 ts=8 et: