From 45ea4f91d62c682e8221f0963503abaa4052808c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Mon, 5 Aug 2019 18:44:39 +0200 Subject: [PATCH] Add Intel CL CI run --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 352ba881..dd008ea3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,24 @@ Python 3 POCL: reports: junit: test/pytest.xml +Python 3 Intel: + script: + - export PY_EXE=python3 + - source /opt/enable-intel-cl.sh + - export PYOPENCL_TEST="intel(r):pu" + - export EXTRA_INSTALL="pybind11 numpy scipy 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 + - intel-cl-cpu + - large-node + except: + - tags + artifacts: + reports: + junit: test/pytest.xml + Python 3 POCL Examples: script: - test -n "$SKIP_EXAMPLES" && exit -- GitLab