.gitlab-ci.yml: use alpine:latest image

Signed-off-by: Maciej Barć <xgqt@riseup.net>
This commit is contained in:
Maciej Barć 2021-06-04 10:50:01 +02:00
parent d4306a3f7e
commit 2d0f7bd6af
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
1 changed files with 7 additions and 5 deletions

View File

@ -13,19 +13,21 @@
# along with scripts. If not, see <https://www.gnu.org/licenses/>. # along with scripts. If not, see <https://www.gnu.org/licenses/>.
# Original author: Maciej Barć <xgqt@riseup.net> # Original author: Maciej Barć <xgqt@riseup.net>
# Copyright (c) 2020, src_prepare group # Copyright (c) 2020-2021, src_prepare group
# Licensed under the GNU GPL v3 License # Licensed under the GNU GPL v3 License
image: debian:stable-slim image: alpine:latest
stages: stages:
- test - test
before_script: before_script:
- apt-get update - apk update
- apt-get install -y bash pylint3 shellcheck - apk install py3-pylint shellcheck
- ln -fs $(which pylint3) /usr/bin/pylint
test: test:
stage: test stage: test