From a918490212359919fb04d600f74410fea901e441 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 16 Jun 2015 23:48:34 -0500 Subject: [PATCH] Add CI config --- .gitlab-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..4687d1667 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +Python 2.7 AMD CPU: + script: + - py_version=2.7 + - cl_dev=amd_a10 + - EXTRA_INSTALL="numpy mako" + - 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 + - amd-cl-a10 + except: + - tags +Python 3.4 AMD CPU: + script: + - py_version=3.4 + - cl_dev=amd_a10 + - EXTRA_INSTALL="numpy mako" + - 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 + - amd-cl-a10 + except: + - tags -- GitLab