Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
morphodita
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
morphodita
Merge requests
!3
Change model source
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Change model source
change_model_source
into
master
Overview
0
Commits
4
Pipelines
1
Changes
5
Merged
Change model source
Tomasz Walkowiak
requested to merge
change_model_source
into
master
Mar 3, 2023
Overview
0
Commits
4
Pipelines
1
Changes
5
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
84ff64bc
4 commits,
Mar 3, 2023
5 files
+
30
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
.gitlab-ci.yml
+
14
−
12
View file @ 84ff64bc
Edit in single-file editor
Open in Web IDE
Show full file
image
:
clarinpl/python:3.6
cache
:
paths
:
-
.tox
stages
:
-
build
-
build_master
-
build_develop
before_script
:
-
pip install tox==2.9.1
build_develop
:
stage
:
build_develop
image
:
'
docker:18.09.7'
except
:
-
master
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
build_image
:
stage
:
build
stage
:
build
_master
image
:
'
docker:18.09.7'
only
:
-
master
@@ -19,8 +23,6 @@ build_image:
-
'
docker:18.09.7-dind'
variables
:
DOCKERHUB_NAME
:
clarinpl/$CI_PROJECT_NAME
before_script
:
-
'
'
script
:
-
docker build -t $DOCKERHUB_NAME .
-
echo $DOCKER_PASSWORD > pass.txt
Loading