From 2d0f7bd6afdacae9ae7648205c1904e11f24f111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Fri, 4 Jun 2021 10:50:01 +0200 Subject: [PATCH] .gitlab-ci.yml: use alpine:latest image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- .gitlab-ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d99e57..ead20b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,19 +13,21 @@ # along with scripts. If not, see . # Original author: Maciej Barć -# Copyright (c) 2020, src_prepare group +# Copyright (c) 2020-2021, src_prepare group # Licensed under the GNU GPL v3 License -image: debian:stable-slim +image: alpine:latest + stages: - test + before_script: - - apt-get update - - apt-get install -y bash pylint3 shellcheck - - ln -fs $(which pylint3) /usr/bin/pylint + - apk update + - apk install py3-pylint shellcheck + test: stage: test