Skip to content
Snippets Groups Projects
Commit de6798ab authored by Matthieu Boileau's avatar Matthieu Boileau
Browse files

Add release stage

parent 1510a6c5
Branches
Tags
No related merge requests found
stages:
- build
- test
- release
variables:
CONTAINER_TEST_IMAGE: boileaum/rosen:latest
CONTAINER_TEST_IMAGE: boileaum/rosen:$CI_COMMIT_REF_NAME
CONTAINER_RELEASE_IMAGE: boileaum/rosen:latest
before_script:
- echo $DOCKERHUB_PASSWD | docker login -u boileaum --password-stdin
......@@ -21,7 +23,17 @@ t:docker:
tags:
- shell, docker
script:
#- docker build --pull -t boileaum/rosen:latest -f ./docker/Dockerfile-rosen .
- docker pull $CONTAINER_TEST_IMAGE
- docker run $CONTAINER_TEST_IMAGE /bin/bash -c 'pytest -v'
r:docker:
stage: release
tags:
- shell, docker
script:
- docker pull $CONTAINER_TEST_IMAGE
- docker tag $CONTAINER_TEST_IMAGE $CONTAINER_RELEASE_IMAGE
- docker push $CONTAINER_RELEASE_IMAGE
only:
- master
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment