From 4044c6f42a402163e2b93709ecccbf33a6dd0f1d Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 9 Jul 2015 18:34:43 -0500 Subject: [PATCH] Add POCL and Py3 tests --- .gitlab-ci.yml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05d0b749..666e72dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,8 @@ Python 2.7 AMD CPU: script: - - py_version=2.7 + - export PY_EXE=python2.7 - export PYOPENCL_TEST=amd:pu - - EXTRA_INSTALL="numpy" + - export 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: @@ -10,3 +10,27 @@ Python 2.7 AMD CPU: - amd-cl-cpu except: - tags +Python 2.7 POCL: + script: + - export PY_EXE=python2.7 + - export PYOPENCL_TEST=portable + - export 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 + - pocl + except: + - tags +Python 3.4 POCL: + script: + - export PY_EXE=python3.4 + - export PYOPENCL_TEST=portable + - export 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 + - pocl + except: + - tags -- GitLab