diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..4687d1667be874cf73f056eacfb9d60641c993be --- /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