Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Commits
fe8e9c27
Commit
fe8e9c27
authored
4 years ago
by
Sylvester Joosten
Browse files
Options
Downloads
Patches
Plain Diff
updated CI to have develop and release modes
parent
0ebf417e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3
v2.0.1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+29
-3
29 additions, 3 deletions
.gitlab-ci.yml
containers/release/Makefile
+10
-0
10 additions, 0 deletions
containers/release/Makefile
with
39 additions
and
3 deletions
.gitlab-ci.yml
+
29
−
3
View file @
fe8e9c27
...
...
@@ -5,25 +5,51 @@ stages:
-
phase2
-
phase3
eic_builder_
docker
:
eic_builder_
release
:
stage
:
phase1
tags
:
-
sodium dind
only
:
-
tags
-
master
script
:
-
cd containers/builder
-
head Dockerfile
-
make login
-
make release-cached
eic_builder_develop
:
stage
:
phase1
tags
:
-
sodium dind
only
:
-
develop
script
:
-
cd containers/builder
-
head Dockerfile
-
make login
-
make develop-cached
eic_
docker
:
eic_
release
:
stage
:
phase2
tags
:
-
sodium dind
when
:
manual
only
:
-
tags
-
master
script
:
-
cd containers/release
-
make login
-
make release-cached
eic_develop
:
stage
:
phase2
tags
:
-
sodium dind
only
:
-
develop
script
:
-
cd containers/release
-
make login
-
make develop-cached
eic_builder_singularity
:
stage
:
phase2
...
...
This diff is collapsed.
Click to expand it.
containers/release/Makefile
+
10
−
0
View file @
fe8e9c27
...
...
@@ -81,7 +81,12 @@ release: build-nc publish ## Make a release by building and publishing the `{ver
@
echo
"Cleaning up"
docker rmi
$(
APP_NAME
)
:latest
develop
:
build-nc publish-dev
##
Develop build
,
do not publish latest
@
echo
"Cleaning up"
docker rmi
$(
APP_NAME
)
:unstable
release-cached
:
build publish
##
Make a release by building and publishing the `{version}` ans `latest` tagged containers to ECR
develop-cached
:
build login publish-dev
##
develop release
publish
:
login publish-latest publish-version
#
publish-version
##
Publish the `{version}` ans `latest` tagged containers to ECR
@
echo
"Publishing done"
...
...
@@ -93,6 +98,11 @@ publish-latest: ## Publish the `latest` taged container to ECR
docker push
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:latest
#docker rmi
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:latest
publish-dev
:
##
Publish the `unstable` taged container to ECR
@
echo
'publish unstable to
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
'
docker tag
$(
APP_NAME
)
:latest
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:unstable
docker push
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:unstable
publish-version
:
tag-version
##
Publish the `{version}` taged container to ECR
@
echo
'publish latest to
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:
$(
VERSION
)
'
docker tag
$(
APP_NAME
)
:latest
$(
REG_NAME
)
/
$(
GL_REG_GROUP
)
/
$(
APP_NAME
)
:
$(
VERSION
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment