From 38c915adb305dd24288779b5a4a5d56b2e21f4fe Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 16 Jun 2015 18:46:48 -0500 Subject: [PATCH] Add CI config --- .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..659b53c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,30 @@ +Python 2.7: + script: + - git submodule update --init + - 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: + - git submodule update --init + - 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: + - git submodule update --init + - 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