Skip to content
Snippets Groups Projects

Gitlab tests2

All threads resolved!
1 file
+ 28
9
Compare changes
  • Side-by-side
  • Inline
+ 28
9
@@ -25,10 +25,10 @@ variables:
@@ -25,10 +25,10 @@ variables:
extends:
extends:
- .adjust_image_names
- .adjust_image_names
image: ${CODE_REGISTRY}/ghsc/hazdev/cloud-formation/hazdev-build-runner:latest
image: ${CODE_REGISTRY}/ghsc/hazdev/cloud-formation/hazdev-build-runner:latest
# only:
only:
# - master@ghsc/geomag/geomag-algorithms
- master@ghsc/geomag/geomag-algorithms
# - production@ghsc/geomag/geomag-algorithms
- production@ghsc/geomag/geomag-algorithms
# - tags@ghsc/geomag/geomag-algorithms
- tags@ghsc/geomag/geomag-algorithms
script:
script:
- docker build
- docker build
--pull
--pull
@@ -46,8 +46,8 @@ variables:
@@ -46,8 +46,8 @@ variables:
- docker push ${INTERNAL_IMAGE_NAME}
- docker push ${INTERNAL_IMAGE_NAME}
- docker image rm ${INTERNAL_IMAGE_NAME}
- docker image rm ${INTERNAL_IMAGE_NAME}
stage: integration
stage: integration
# tags:
tags:
# - build
- build
variables:
variables:
FROM_IMAGE: ${CODE_REGISTRY}/devops/images/usgs/centos:latest
FROM_IMAGE: ${CODE_REGISTRY}/devops/images/usgs/centos:latest
@@ -165,9 +165,28 @@ Check Python 3.8:
@@ -165,9 +165,28 @@ Check Python 3.8:
## --------------------------------------------------
## --------------------------------------------------
# Integration Stage
# Integration Stage
## --------------------------------------------------
## --------------------------------------------------
Build Algorithms Image:
Build_Algorithms_Image:
extends:
before_script:
- .build_docker_image
- IMAGE_NAME=usgs/${APP_NAME}:${CI_COMMIT_REF_SLUG}
 
- IMAGE_NAME=${IMAGE_NAME/:master/:latest}
 
- INTERNAL_IMAGE_NAME=${CI_REGISTRY_IMAGE}/${IMAGE_NAME}
 
- STACK_NAME=${APP_NAME}
 
script:
 
- docker build
 
--pull
 
--build-arg APP_NAME=${APP_NAME}
 
--build-arg FROM_IMAGE=${FROM_IMAGE}
 
--build-arg GIT_BRANCH_NAME=${CI_COMMIT_REF_NAME}
 
--build-arg GIT_COMMIT_SHA=${CI_COMMIT_SHA}
 
--tag local/${IMAGE_NAME} .
 
 
- docker tag local/${IMAGE_NAME} ${IMAGE_NAME}
 
- docker push ${IMAGE_NAME}
 
- docker image rm ${IMAGE_NAME}
 
 
- docker tag local/${IMAGE_NAME} ${INTERNAL_IMAGE_NAME}
 
- docker push ${INTERNAL_IMAGE_NAME}
 
- docker image rm ${INTERNAL_IMAGE_NAME}
variables:
variables:
APP_NAME: geomag-algorithms
APP_NAME: geomag-algorithms
## --------------------------------------------------
## --------------------------------------------------
Loading