Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docs.it4i.cz
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
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
SCS
docs.it4i.cz
Merge requests
!275
Update CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update CI
dev
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
1 unresolved thread
Hide all comments
Merged
Marek Chrastina
requested to merge
dev
into
master
5 years ago
Overview
2
Commits
1
Pipelines
0
Changes
1
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 4
d64b87e8
5 years ago
version 3
ead7910b
5 years ago
version 2
20ae6d93
5 years ago
version 1
ff4ed065
5 years ago
master (base)
and
latest version
latest version
c8586e53
1 commit,
5 years ago
version 4
d64b87e8
1 commit,
5 years ago
version 3
ead7910b
1 commit,
5 years ago
version 2
20ae6d93
1 commit,
5 years ago
version 1
ff4ed065
1 commit,
5 years ago
1 file
+
0
−
7
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
0
−
7
Options
@@ -45,15 +45,8 @@ ext_links:
@@ -45,15 +45,8 @@ ext_links:
mkdocs
:
mkdocs
:
stage
:
build
stage
:
build
image
:
it4innovations/docker-mkdocscheck:latest
image
:
it4innovations/docker-mkdocscheck:latest
cache
:
paths
:
-
.cache/pip
David Hrbáč
@hrb33
5 years ago
Owner
@chr0139
cachování je tam proto, aby se urychlilo CI. Zrušením keše to trvá nyní >15x déle.
Collapse replies
Marek Chrastina
@chr0139
5 years ago
Author
Owner
@hrb33
v dmz není cache server a proto se ta cache i tak často vůbec nepoužije
lepší řešení je v tomhle připadě "cachovat" na úrovni dockeru, kde to nyní je vše a stačí pouzu stáhnout image jeden na každý gitlab runner
Please
register
or
sign in
to reply
Please
register
or
sign in
to reply
-
venv/
before_script
:
before_script
:
-
python -V
# Print out python version for debugging
-
python -V
# Print out python version for debugging
-
virtualenv venv
-
source venv/bin/activate
-
pip install -r requirements.txt
script
:
script
:
-
mkdocs -V
-
mkdocs -V
# add version to footer
# add version to footer
Loading
@chr0139 cachování je tam proto, aby se urychlilo CI. Zrušením keše to trvá nyní >15x déle.
@hrb33