CI: Install python3-distutils on Debian testing

Debian testing recently updated to a new version of meson, which fails
to find Python unless distutils is also installed. On Debian, distutils
is in a separate package from Python itself, so we need to install it
separately.
This commit is contained in:
Роман Донченко 2019-07-14 20:47:20 +00:00
parent 030da03add
commit 60faa3a33c

View File

@ -45,7 +45,7 @@ debian:testing:
image: $AMD64_DEBIAN_TESTING
before_script:
- apt update -y
- apt install -y gcc meson
- apt install -y gcc meson python3-distutils
ubuntu:bionic:cmake:
extends: '.cmake_test'