Removed unused variables
This commit is contained in:
parent
e2a5f6c96f
commit
1016c782a8
1 changed files with 2 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
# avoids unecessary repulling of node modules
|
# avoids unecessary repulling of node modules
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- page-test/node_modules/
|
- node_modules/
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- lint
|
- lint
|
||||||
|
@ -34,13 +34,10 @@ linter:
|
||||||
build:
|
build:
|
||||||
image: !reference [.docker, image]
|
image: !reference [.docker, image]
|
||||||
stage: build
|
stage: build
|
||||||
variables:
|
|
||||||
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_BRANCH
|
|
||||||
CACHING:
|
|
||||||
before_script:
|
before_script:
|
||||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||||
script:
|
script:
|
||||||
- docker build $CACHING -t $IMAGE_TAG .
|
- docker build -t $IMAGE_TAG .
|
||||||
after_script:
|
after_script:
|
||||||
- docker save $IMAGE_TAG > docker.tar
|
- docker save $IMAGE_TAG > docker.tar
|
||||||
artifacts:
|
artifacts:
|
||||||
|
|
Reference in a new issue