Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
mediaserver
envsetup
Commits
aeaa0f23
Commit
aeaa0f23
authored
4 years ago
by
Stéphane Diemer
Browse files
Options
Downloads
Patches
Plain Diff
Do not install docker for bench in offline mode
parent
f6b042ed
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ansible/roles/bench-server/tasks/main.yml
+12
-4
12 additions, 4 deletions
ansible/roles/bench-server/tasks/main.yml
with
12 additions
and
4 deletions
ansible/roles/bench-server/tasks/main.yml
+
12
−
4
View file @
aeaa0f23
...
...
@@ -55,27 +55,35 @@
remote_src
:
yes
-
name
:
add docker key
when
:
not in_docker
when
:
-
not offline_mode | d(false)
-
not in_docker | d(false)
apt_key
:
url
:
https://download.docker.com/linux/debian/gpg
state
:
present
-
name
:
add docker debian repository
when
:
not in_docker
when
:
-
not offline_mode | d(false)
-
not in_docker | d(false)
apt_repository
:
repo
:
"
deb
https://download.docker.com/linux/debian
buster
stable"
state
:
present
update_cache
:
yes
-
name
:
install docker
when
:
not in_docker
when
:
-
not offline_mode | d(false)
-
not in_docker | d(false)
apt
:
name
:
docker-ce
state
:
latest
update_cache
:
yes
-
name
:
generate docker image
when
:
not in_docker
when
:
-
not offline_mode | d(false)
-
not in_docker | d(false)
command
:
cmd
:
make build_docker_img
chdir
:
/usr/share/ms-testing-suite
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment