.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/>.
# 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
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