Merge branch 'ci-build-image' into DO-NOT-MERGE-horrible-webapp

This commit is contained in:
s3lph 2018-07-11 12:21:48 +02:00
commit c74a0d734e
3 changed files with 15 additions and 8 deletions

View file

@ -1,20 +1,28 @@
---
image: s3lph/matemat-ci:20180619-01
image: s3lph/matemat-ci:20180710-03
stages:
- test
- codestyle
- deploy
test:
stage: test
script:
- pip3 install -r requirements.txt
- python3-coverage run --branch -m unittest discover matemat
- python3-coverage report -m --include 'matemat/*' --omit '*/test_*.py'
- sudo -u matemat python3-coverage run --branch -m unittest discover matemat
- sudo -u matemat python3-coverage report -m --include 'matemat/*' --omit '*/test_*.py'
codestyle:
stage: codestyle
script:
- pip3 install -r requirements.txt
- pycodestyle matemat
# - mypy --ignore-missing-imports --strict -p matemat
- sudo -u matemat pycodestyle matemat
# - sudo -u matemat mypy --ignore-missing-imports --strict -p matemat
docker_build_push:
stage: deploy
script:
- docker build -t "registry.gitlab.com/s3lph/matemat:$(git rev-parse HEAD)" .
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_TOKEN registry.gitlab.com
- docker push "registry.gitlab.com/s3lph/matemat:$(git rev-parse HEAD)"

2
doc

@ -1 +1 @@
Subproject commit 51e940460ddbaebb7f2ffc48d00d9ef19cf8d33f
Subproject commit 9634785e5621b324f72598b3cee83bbc45c25d7b

View file

@ -3,8 +3,7 @@ FROM debian:buster
RUN useradd -d /home/matemat -m matemat
RUN apt-get update -qy
RUN apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools build-essential
RUN apt-get install -y --no-install-recommends sudo git docker.io python3-dev python3-pip python3-coverage python3-setuptools build-essential
RUN pip3 install wheel pycodestyle mypy
WORKDIR /home/matemat
USER matemat