diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f9f61581249b56b5b28d99165e0f2ec89af5e873..01bd3dd8bdcfa471f15bc7eb4751afca5d2e80bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,20 @@ test: - sudo -u testuser poetry install - sudo -u testuser poetry run tox +build_dist: + stage: build + image: + name: python:3.8-buster + before_script: + - apt-get -y update && apt-get -y sudo + - pip install poetry + - adduser --disabled-password --gecos "Test User" testuser + script: + - sudo -u testuser poetry build + artifacts: + paths: + - dist/ + build_docker: stage: build image: