Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
punctuator
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
punctuator
Merge requests
!19
Change requirements
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Change requirements
develop
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Change requirements
Bartosz Walkowiak
requested to merge
develop
into
master
Feb 28, 2023
Overview
0
Commits
1
Pipelines
1
Changes
2
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c7d44cd8
1 commit,
Feb 28, 2023
2 files
+
16
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
.gitlab-ci.yml
+
14
−
5
View file @ c7d44cd8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -7,12 +7,12 @@ cache:
stages
:
-
check_style
-
build
-
build_develop
# - deploy
before_script
:
-
pip install tox==3.18.1
pep8
:
before_script
:
-
pip install tox==3.18.1
stage
:
check_style
script
:
-
tox -v -e pep8
@@ -26,8 +26,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
@@ -39,6 +37,17 @@ build_image:
-
docker image tag $DOCKERHUB_NAME $CI_REGISTRY_IMAGE:latest
-
docker push $CI_REGISTRY_IMAGE
build_develop
:
stage
:
build_develop
image
:
"
docker:18.09.7"
only
:
-
develop
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
# deploy:
# stage: deploy
# before_script:
Loading