gitlab-ci: switch pyup_io_safety_check to Alpine to be lighter

This commit is contained in:
Hans-Christoph Steiner 2018-05-17 13:39:14 +02:00
parent 00971941fd
commit 74fb07b302
1 changed files with 6 additions and 4 deletions

View File

@ -122,11 +122,13 @@ pip_install:
- fdroid update --help
pyup_io_safety_check:
image: archlinux/base
image: alpine:3.7
variables:
LANG: C.UTF-8
script:
- pacman --sync --sysupgrade --refresh --noconfirm grep python-pip python-virtualenv tar
- ./setup.py compile_catalog install
- pip install safety
- apk add --no-cache ca-certificates python3
- python3 -m ensurepip
- pip3 install safety
- safety check --full-report
pylint: