diff options
author | Julian Andres Klode <jak@debian.org> | 2016-08-29 15:46:10 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-08-29 15:48:59 +0200 |
commit | bb315d0513b93ef111ea69106d00188f0a4ec17a (patch) | |
tree | 600b0ece6813659871bcf5d755aa2ce7222bface /shippable.yml | |
parent | 30ea7a60404ee53393235827202968393951d106 (diff) |
Add shippable.yml for CI on Shippable
This uses the current Ubuntu 16.04 for testing, but it only runs
one run, presumably as root.
Diffstat (limited to 'shippable.yml')
-rw-r--r-- | shippable.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 000000000..24b2545f7 --- /dev/null +++ b/shippable.yml @@ -0,0 +1,15 @@ +language: none + +build: + pre_ci_boot: + image_name: ubuntu + image_tag: xenial + pull: true + ci: + - apt-get install -qq build-essential + - ./prepare-release travis-ci + - mkdir build + - ( cd build && cmake .. ) + - make -C build -j 4 + - CTEST_OUTPUT_ON_FAILURE=1 make -C build test + - ./test/integration/run-tests -q |