From 17a7a0ebfa220c170be07646711a47b07cc264fb Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Thu, 20 Feb 2020 21:08:45 -0500 Subject: [PATCH] Gitlab CI: Test cmake build on Debian Was seeing ModuleNotFoundError: No module named 'skbuild' when using pip3 to install cmake on Ubuntu 16. Installing with apt-get may resolve the issue, and switching to use debian:testing to be certain a newer version of cmake is available. --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0409915..02d7835 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,13 +47,12 @@ debian:testing: - apt-get update -y - apt-get install -y gcc meson python3-distutils -ubuntu:bionic:cmake: +debian:testing:cmake: extends: '.cmake_test' - image: $AMD64_UBUNTU_BIONIC + image: $AMD64_DEBIAN_TESTING before_script: - apt-get update -y - - apt-get install -y gcc make python3-pip - - pip3 install cmake + - apt-get install -y gcc make python3-pip cmake ubuntu:bionic:meson: extends: '.meson_test'