From c7074e74497c66c2663fe69affe49ed78b5c5f56 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Tue, 16 Jun 2015 21:26:37 -0500
Subject: [PATCH] Add CI config

---
 .gitlab-ci.yml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..8748833
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,27 @@
+Python 2.7:
+  script:
+  - py_version=2.7
+  - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
+  - ". ./build-and-test-py-project.sh"
+  tags:
+  - python2.7
+  except:
+  - tags
+Python 3.4:
+  script:
+  - py_version=3.4
+  - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
+  - ". ./build-and-test-py-project.sh"
+  tags:
+  - python3.4
+  except:
+  - tags
+Python 2.6:
+  script:
+  - py_version=2.6
+  - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
+  - ". ./build-and-test-py-project.sh"
+  tags:
+  - python2.6
+  except:
+  - tags
-- 
GitLab