diff options
author | Julian Andres Klode <jak@debian.org> | 2016-08-29 15:46:10 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-11-14 15:10:03 +0100 |
commit | bb05f4e0c4bb91c886bb3ee9965d22ce2a589bb1 (patch) | |
tree | 189ce5578cd62b4cd3a37f4ca7b1f5f998856a4f | |
parent | 20ad228fc3f55c5142bb8d797e8d5d729b330816 (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.
(adapted from commit bb315d0513b93ef111ea69106d00188f0a4ec17a)
-rw-r--r-- | shippable.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 000000000..944c406a9 --- /dev/null +++ b/shippable.yml @@ -0,0 +1,13 @@ +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 + - make + - make test + - ./test/integration/run-tests -q |