build_be
lint_fe
This commit is contained in:
parent
6f6132b7a6
commit
bfb291836b
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user