From e32107de11d34444d0bb29e77bb8697837639bb1 Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Fri, 8 Apr 2022 14:04:54 +0100 Subject: [PATCH] Use Debian image for Gitlab CI --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c94e2e8..3fbc88a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,9 @@ -image: python:3.8-alpine +image: python:3.8-bullseye test: stage: test script: + - sudo apt install build-essential - pip install -r requirements.txt - pip install -U sphinx sphinx-press-theme - sphinx-build -b html docs public @@ -12,6 +13,7 @@ test: pages: stage: deploy script: + - sudo apt install build-essential - pip install -r requirements.txt - pip install -U sphinx sphinx-press-theme - sphinx-build -b html docs public