From e9f0379d52cd3890a503aed043991afe59edd200 Mon Sep 17 00:00:00 2001 From: Your Name <stephan.seitz@fau.de> Date: Tue, 3 Sep 2019 15:57:53 +0200 Subject: [PATCH] Install ninja on all Linux CIs --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8643562..b686f9f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,6 +27,7 @@ ubuntu: - $ENABLE_NIGHTLY_BUILDS image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_ubuntu script: + - apt install -y ninja-build - python3 -m pip install -e . - python3 setup.py test tags: @@ -45,6 +46,7 @@ conda: - $ENABLE_NIGHTLY_BUILDS image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda script: + - apt install -y ninja-build - conda install pip - pip install -e . - python setup.py test -- GitLab