summaryrefslogtreecommitdiff
path: root/shippable.yml
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-05-20 14:12:42 -0700
committerMatt Clay <matt@mystile.com>2016-05-20 14:12:42 -0700
commit0e8930640a27b0f005d55780ed6bcdd11d144f32 (patch)
tree79069827e312c35c6b94d888c924fff4fe45cdfc /shippable.yml
parentdd4c56e4d68664e4a50292aa19ea61b15c92287c (diff)
downloadansible-0e8930640a27b0f005d55780ed6bcdd11d144f32.tar.gz
Add support for shippable.com CI tests.
This will allow offloading sanity tests from Travis to Shippable.
Diffstat (limited to 'shippable.yml')
-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