Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sight-doc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
Sight
sight-doc
Merge requests
!20
(CI): update docker images
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
(CI): update docker images
28-ci-update-docker-images
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Flavien BRIDAULT
requested to merge
28-ci-update-docker-images
into
dev
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
What does this MR do?
Use python:alpine (98Mb) instead of python:3 (918Mb)
Enable SSL CA verification when cloning. The docker images contains our certificates since a while...
How to test it?
Just look if the pipeline built successfully.
Associated Issues/Merge Requests
Issues
Closes
#28 (closed)
Edited
5 years ago
by
Julien WAECHTER
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
cde972a6
1 commit,
5 years ago
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
5
−
5
Options
@@ -9,7 +9,7 @@ sheldon-mr:
stage
:
sheldon
script
:
-
export ORIG_BRANCH_COMMIT_SHA=$(git merge-base dev origin/${CI_COMMIT_REF_NAME})
-
git
-c http.sslVerify=false
clone --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.ircad.fr/Sight/sight-git.git
-
git clone --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.ircad.fr/Sight/sight-git.git
# Execute sheldon, on all commits from the merge request
-
sight-git/hooks/sheldon ${ORIG_BRANCH_COMMIT_SHA}..${CI_COMMIT_SHA}
@@ -17,14 +17,14 @@ sheldon:
image
:
${DOCKER_ENVDEV_MINT19}
stage
:
sheldon
script
:
-
git
-c http.sslVerify=false
clone --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.ircad.fr/Sight/sight-git.git
-
git clone --depth 1 https://gitlab-ci-token:${CI_JOB_TOKEN}@git.ircad.fr/Sight/sight-git.git
-
sight-git/hooks/sheldon HEAD^ HEAD
except
:
-
dev
-
master
rst-lint
:
image
:
python:
3
image
:
python:
alpine
stage
:
lint
script
:
-
pip install doc8 Pygments
@@ -39,11 +39,11 @@ markdown-lint:
-
markdownlint --config .markdownlint.json .
build-doc
:
image
:
python:
3
image
:
python:
alpine
stage
:
build
script
:
-
pip install sphinx sphinx_rtd_theme sphinx-tabs
-
ap
t-get update && apt-get install -yqq
make
-
ap
k add
make
-
make html
artifacts
:
name
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
Loading