Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wordifier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nlpworkers
wordifier
Merge requests
!5
Refactor
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Refactor
refactor
into
master
Overview
0
Commits
12
Pipelines
2
Changes
3
Merged
Refactor
Bartosz Walkowiak
requested to merge
refactor
into
master
Oct 25, 2023
Overview
0
Commits
12
Pipelines
2
Changes
3
0
0
Merge request reports
Viewing commit
b8c1f795
Prev
Next
Show latest version
3 files
+
16
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
b8c1f795
Add develop image build
· b8c1f795
Łukasz Szwed
authored
Oct 25, 2023
.gitlab-ci.yml
+
14
−
0
View file @ b8c1f795
Edit in single-file editor
Open in Web IDE
Show full file
@@ -2,10 +2,12 @@ image: clarinpl/python:3.8
cache
:
paths
:
-
.tox
stages
:
-
check_style
-
tests
-
build
-
build_develop
.check_style_template
:
before_script
:
@@ -48,3 +50,15 @@ build_image:
-
docker build -t $CI_REGISTRY_IMAGE:latest .
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker push $CI_REGISTRY_IMAGE:latest
build_develop
:
except
:
-
master
stage
:
build_develop
image
:
docker:18.09.7
services
:
-
'
docker:18.09.7-dind'
script
:
-
docker build -t $CI_REGISTRY_IMAGE:develop .
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker push $CI_REGISTRY_IMAGE:develop
Loading