-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstart_local_runner.sh
executable file
·77 lines (66 loc) · 1.89 KB
/
start_local_runner.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
docker_image="onaci/gitlab-runner:alpine"
runner_name="test-runner-$HOSTNAME"
intro() { cat <<INTRO
Start a Gitlab CI runner on your local machine. This runner will connect to the
specified Gitlab instance and run CI jobs. This script can be used to:
- adding a temporary runner for a project, without needing admin access
- test modifications to the onaci/gitlab-runner image
- debugging issues with a pipeline by running the jobs locally
INTRO
}
usage() { cat <<USAGE
Usage:
$0 [--image docker-image] [--name runner-name]
<gitlab-url> <token>
[-- docker options]
Parameters:
<gitlab-url>:
The URL of the Gitlab instance.
<token>:
A runner token provided by Gitlab. A new runner token can be generated
from "Settings > CI/CD > New runner" from a project in Gitlab.
-- docker options:
Anything after '--' is passed to 'docker run'.
Use this to set extra environment variables, for example.
Options:
-h, --help:
Display this help
-i, --image "docker-image":
The docker image to use ($docker_image)
-n, --name "runner-name":
The name of the runner, used in the Gitlab administration
($runner_name)
USAGE
}
options=$( getopt -n "$0" -l "help,image:,name:" -o "hi:n:" -- "$@" )
if [[ $? != 0 ]] ; then
usage >&2
exit 1
fi
eval set -- "$options"
while true ; do
case "$1" in
-h|--help) intro ; echo ; usage ; exit 0 ;;
-i|--image) docker_image=$2 ; shift 2 ;;
-n|--name) runner_name=$2 ; shift 2 ;;
--) shift ; break ;;
*) echo "Unknown option $1" >&2 ; exit 1 ;;
esac
done
if [[ $# < 2 ]] ; then
usage >&2
exit 1
fi
gitlab_url=$1
token=$2
shift 2
exec docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-e GITLABURL="$gitlab_url" \
-e TOKEN="$token" \
-e RUNNERNAME="$runner_name" \
-e MOUNTDOCKERSOCKET="/var/lib/docker.sock:/var/lib/docker.sock" \
"$@" \
"$docker_image" \
run --user=gitlab-runner --working-directory=/home/gitlab-runner