2020-10-24 23:57:45 +05:30
|
|
|
# Download the binary for your system
|
|
|
|
sudo curl --output /usr/local/bin/gitlab-runner ${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
# Give it permission to execute
|
2020-10-24 23:57:45 +05:30
|
|
|
sudo chmod +x /usr/local/bin/gitlab-runner
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
# The rest of the commands execute as the user who will run the runner
|
|
|
|
# Register the runner (steps below), then run
|
2020-10-24 23:57:45 +05:30
|
|
|
cd ~
|
|
|
|
gitlab-runner install
|
|
|
|
gitlab-runner start
|