diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c4c202c..b257519 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,15 +20,24 @@ stages: # BUILD ################################################################# -build_fe: - script: - - echo '' - extends: - - .build +#build_fe: +# image: node:alpine +# script: +# - echo '' +# extends: +# - .build build_be: + image: python:3.8-slim + before_script: + - apt-get update + - apt-get install -y build-essential gcc + - python -m venv /opt/venv + - python -m pip install --upgrade pip script: - - echo '' + - python setup.py sdist + artifacts: + untracked: true extends: - .build @@ -37,20 +46,21 @@ build_be: ################################################################# lint_fe: + image: node:alpine script: - - echo '' + - npm run -- ng lint extends: - .lint - needs: - - build_fe +# needs: +# - build_fe -lint_be: - script: - - echo '' - extends: - - .lint - needs: - - build_be +#lint_be: +# script: +# - echo '' +# extends: +# - .lint +# needs: +# - build_be ######## # TEST @@ -70,7 +80,7 @@ test_be: extends: - .test needs: - - lint_be + - build_be ######## # COMPOSE-BUILD