From 2bcecf38cc0fc56e6b0b60537dc6a83ab4cb14e6 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Wed, 21 Mar 2018 19:56:39 -0500 Subject: [PATCH 1/2] Add barvinok build test --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b774f17..555f03a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ Python 2.7: - python2.7 except: - tags + Python 3.5: script: - export PY_EXE=python3.5 @@ -16,6 +17,7 @@ Python 3.5: - python3.5 except: - tags + Python 3.5 small integer opt: script: - export PY_EXE=python3.5 @@ -26,6 +28,7 @@ Python 3.5 small integer opt: - python3.5 except: - tags + Python 2.6: script: - export PY_EXE=python2.6 @@ -35,6 +38,18 @@ Python 2.6: - python2.6 except: - tags + +Python 3.6 + Barvinok: + script: + - git clean -fdx + - python3.6 -m venv .env + - source .env/bin/activate + - "./build-with-barvinok.sh" + tags: + - python3.6 + except: + - tags + PyPy: script: - export PY_EXE=pypy @@ -44,6 +59,7 @@ PyPy: - pypy except: - tags + Documentation: script: - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh -- GitLab From 73673bb2a4748462e361ba08bf69dbffafe991ca Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Wed, 21 Mar 2018 20:04:05 -0500 Subject: [PATCH 2/2] Fix cffi build in barv build test --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 555f03a..885e6f8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,6 +44,8 @@ Python 3.6 + Barvinok: - git clean -fdx - python3.6 -m venv .env - source .env/bin/activate + - python -m ensurepip + - pip install cffi - "./build-with-barvinok.sh" tags: - python3.6 -- GitLab