summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-05-20 14:12:42 -0700
committerMatt Clay <matt@mystile.com>2016-05-21 16:22:05 -0700
commit68807c461b4207775bec1c23c00d7d7cfc079ffa (patch)
tree0ed393b847b38e809e06da509984831049e90ba4
parent3bef1078723fe2264494880835ed76f795421a11 (diff)
downloadansible-68807c461b4207775bec1c23c00d7d7cfc079ffa.tar.gz
Add support for shippable.com CI tests.
This will allow offloading sanity tests from Travis to Shippable. (cherry picked from commit 0e8930640a27b0f005d55780ed6bcdd11d144f32)
-rw-r--r--shippable.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/shippable.yml b/shippable.yml
new file mode 100644
index 0000000000..fe0769aa05
--- /dev/null
+++ b/shippable.yml
@@ -0,0 +1,29 @@
+language: python
+
+env: TOXENV=py24
+
+matrix:
+ include:
+ - python: 2.6
+ env: TOXENV=py26
+ - python: 2.7
+ env: TOXENV=py27
+ - python: 3.4
+ env: TOXENV=py34
+ - python: 3.5
+ env: TOXENV=py35
+
+build:
+ ci:
+ - if [ "${TOXENV}" = "py24" ]; then add-apt-repository ppa:fkrull/deadsnakes && apt-get update -qq && apt-get install python2.4 -qq; fi
+ - pip install tox
+ - TARGET=sanity ./test/utils/run_tests.sh
+
+integrations:
+ notifications:
+ - integrationName: email
+ type: email
+ on_success: never
+ on_failure: never
+ on_start: never
+ on_pull_request: never