-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge digitallumberjack/master modifications #33
Open
digitalLumberjack
wants to merge
25
commits into
sameersbn:master
Choose a base branch
from
digitalLumberjack:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 23 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
1fede7b
Upgrade gitlab-ci-multi-runner to v1.7.0
digitalLumberjack 0337d65
added docker executor support
digitalLumberjack d3df8a7
Merge remote-tracking branch 'origin/release/v1.7.0'
digitalLumberjack 21bdf60
added docker private registry support
digitalLumberjack c78eeff
fixed auth for docker
digitalLumberjack ee2edcf
update to xenial
saschanaz 0de46ba
git-core -> git
saschanaz dc8b3bf
Merge pull request #1 from SaschaNaz/xenial
digitalLumberjack 89a554b
gitlab-ci-multi-runner: upgrade to 1.8.0
Maescool 225b987
Merge branch 'master' of https://github.com/Maescool/docker-gitlab-ci…
digitalLumberjack 97d5e51
bumped to v1.9.0 of gitlab runner
digitalLumberjack 30865ea
added support of RUNNER_CONCURRENT to set parallels jobs
digitalLumberjack 9369254
added additonal volumes
digitalLumberjack 688b056
fix reboot error where mkdir already existing directory
mproucelle 974e3f2
bumped to 1.9.3 and added support of RUNNER_OUTPUT_LIMIT
digitalLumberjack a7cace0
bumped to runner v1.10.2
digitalLumberjack 9947cf3
rollback to sameersbn/ubuntu:14.04.20170110 base image
digitalLumberjack 3570012
bumped to gitlab runner v1.10.4
digitalLumberjack 711f75d
Merge remote-tracking branch 'sam/master' into mergemaster
digitalLumberjack fd83ccf
restored origin image name
digitalLumberjack e3a7ab6
fixed package installation
digitalLumberjack 71fbf3d
added RUNNER_AUTOUNREGISTER variable to unregister the runner on stop
digitalLumberjack 6c55ae8
bumped to 1.11.0
digitalLumberjack 80abfc5
bumped to runner v1.11.2
digitalLumberjack d050d92
fixed spelling on concurrent parameter
digitalLumberjack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,26 @@ | ||
FROM sameersbn/ubuntu:14.04.20170110 | ||
MAINTAINER [email protected] | ||
|
||
ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.1.4 \ | ||
ENV GITLAB_CI_MULTI_RUNNER_VERSION=1.11.0 \ | ||
GITLAB_CI_MULTI_RUNNER_USER=gitlab_ci_multi_runner \ | ||
GITLAB_CI_MULTI_RUNNER_HOME_DIR="/home/gitlab_ci_multi_runner" | ||
ENV GITLAB_CI_MULTI_RUNNER_DATA_DIR="${GITLAB_CI_MULTI_RUNNER_HOME_DIR}/data" | ||
|
||
ENV CA_CERTIFICATES_PATH='' | ||
ENV RUNNER_CONCURRENT='' | ||
ENV CI_SERVER_URL='' | ||
ENV RUNNER_TOKEN='' | ||
ENV RUNNER_EXECUTOR='docker' | ||
ENV RUNNER_DESCRIPTION='' | ||
|
||
ENV RUNNER_DOCKER_IMAGE='docker:latest' | ||
ENV RUNNER_DOCKER_MODE='socket' | ||
ENV RUNNER_DOCKER_PRIVATE_REGISTRY_URL='' | ||
ENV RUNNER_DOCKER_PRIVATE_REGISTRY_TOKEN='' | ||
ENV RUNNER_DOCKER_ADDITIONAL_VOLUME='' | ||
ENV RUNNER_OUTPUT_LIMIT='4096' | ||
ENV RUNNER_AUTOUNREGISTER='false' | ||
|
||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E1DD270288B4E6030699E45FA1715D88E1DF1F24 \ | ||
&& echo "deb http://ppa.launchpad.net/git-core/ppa/ubuntu trusty main" >> /etc/apt/sources.list \ | ||
&& apt-get update \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.4-7 | ||
1.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@digitalLumberjack spelling mistake here, should be
concurrent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks I fixed that.
digitallumberjack/docker-gitlab-ci-multi-runner:v9.3.0-1 include this fix.