Update .gitlab-ci.yml, apps/cic-eth/.gitlab-ci.yml, ci_templates/.cic-template.yml files

This commit is contained in:
Blair Vanderlugt 2021-05-23 02:11:18 +00:00
parent b656370c50
commit 575b2a196a
3 changed files with 18 additions and 14 deletions

View File

@ -9,6 +9,6 @@ include:
- local: 'apps/data-seeding/.gitlab-ci.yml'
stages:
# - build
- build
- test
- release

View File

@ -21,7 +21,11 @@ build-mr-unittest-cic-eth:
test-mr-cic-eth:
extends:
- .cic_eth_variables
- .py_unittest_merge_request
stage: test
image: $CI_REGISTRY_IMAGE/$APP_NAME-test:latest
script:
- cd apps/$APP_NAME/
- pytest tests/unit/
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
# changes:

View File

@ -18,17 +18,17 @@ variables:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
when: always
.py_build_unittest_merge_request:
stage: build
variables:
CI_DEBUG_TRACE: "true"
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > "/kaniko/.docker/config.json"
- /kaniko/executor --context $CONTEXT --dockerfile $DOCKERFILE_PATH $KANIKO_CACHE_ARGS --cache-repo $CI_REGISTRY_IMAGE --target test --tarPath $APP_NAME-test-image.tar --destination $CI_REGISTRY_IMAGE/$APP_NAME-test:latest
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
when: always
# .py_build_unittest_merge_request:
# stage: build
# variables:
# CI_DEBUG_TRACE: "true"
# script:
# - mkdir -p /kaniko/.docker
# - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > "/kaniko/.docker/config.json"
# - /kaniko/executor --context $CONTEXT --dockerfile $DOCKERFILE_PATH $KANIKO_CACHE_ARGS --cache-repo $CI_REGISTRY_IMAGE --target test --tarPath $APP_NAME-test-image.tar --destination $CI_REGISTRY_IMAGE/$APP_NAME-test:latest
# rules:
# - if: $CI_PIPELINE_SOURCE == "merge_request_event"
# when: always
.py_unittest_merge_request: