Skip to content
Snippets Groups Projects
Commit 5aafb837 authored by Tomasz Maczukin's avatar Tomasz Maczukin Committed by Achilleas Pipinellis
Browse files

Mention tagged S3 sources in installation documentation

parent ef0ca338
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,9 @@ Here are the steps to install and configure GitLab Runner under FreeBSD: ...@@ -27,6 +27,9 @@ Here are the steps to install and configure GitLab Runner under FreeBSD:
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386 sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386
``` ```
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
1. Give it permissions to execute: 1. Give it permissions to execute:
```bash ```bash
......
...@@ -18,6 +18,9 @@ sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloa ...@@ -18,6 +18,9 @@ sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloa
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-arm sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-arm
``` ```
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
Give it permissions to execute: Give it permissions to execute:
```bash ```bash
...@@ -71,6 +74,9 @@ sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloa ...@@ -71,6 +74,9 @@ sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloa
sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64
``` ```
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
Give it permissions to execute: Give it permissions to execute:
```bash ```bash
......
...@@ -11,6 +11,9 @@ download the macOS binary. ...@@ -11,6 +11,9 @@ download the macOS binary.
sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64 sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64
``` ```
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
1. Give it permissions to execute: 1. Give it permissions to execute:
```bash ```bash
...@@ -63,6 +66,9 @@ Voila! Runner is installed and will be run after a system reboot. ...@@ -63,6 +66,9 @@ Voila! Runner is installed and will be run after a system reboot.
curl -o /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64 curl -o /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64
``` ```
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
1. Give it permissions to execute: 1. Give it permissions to execute:
```bash ```bash
......
...@@ -12,6 +12,9 @@ To install and run GitLab Runner on Windows you need: ...@@ -12,6 +12,9 @@ To install and run GitLab Runner on Windows you need:
1. Download the binary for [x86][] or [amd64][] and put it into the folder you 1. Download the binary for [x86][] or [amd64][] and put it into the folder you
created. Rename the binary to `gitlab-runner.exe`. created. Rename the binary to `gitlab-runner.exe`.
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
1. Run an [`Administrator`/elevated command prompt][prompt] (<kbd>WindowsKey</kbd> + <kbd>X</kbd> then select Command Prompt (Admin)). 1. Run an [`Administrator`/elevated command prompt][prompt] (<kbd>WindowsKey</kbd> + <kbd>X</kbd> then select Command Prompt (Admin)).
1. Register the Runner (see [Runners documentation](https://docs.gitlab.com/ce/ci/runners/) to learn how to obtain a token): 1. Register the Runner (see [Runners documentation](https://docs.gitlab.com/ce/ci/runners/) to learn how to obtain a token):
...@@ -40,27 +43,27 @@ To install and run GitLab Runner on Windows you need: ...@@ -40,27 +43,27 @@ To install and run GitLab Runner on Windows you need:
using the Built-in System Account (recommended) or using a user account. using the Built-in System Account (recommended) or using a user account.
**Run service using Built-in System Account** **Run service using Built-in System Account**
```bash ```bash
gitlab-runner install gitlab-runner install
gitlab-runner start gitlab-runner start
``` ```
**Run service using user account** **Run service using user account**
You have to enter a valid password for the current user account, because You have to enter a valid password for the current user account, because
it's required to start the service by Windows: it's required to start the service by Windows:
```bash ```bash
gitlab-runner install --user ENTER-YOUR-USERNAME --password ENTER-YOUR-PASSWORD gitlab-runner install --user ENTER-YOUR-USERNAME --password ENTER-YOUR-PASSWORD
gitlab-runner start gitlab-runner start
``` ```
See the [troubleshooting section](#troubleshooting) if you encounter any See the [troubleshooting section](#troubleshooting) if you encounter any
errors during the Runner installation. errors during the Runner installation.
1. (Optional) Update Runners `concurrent` value in `C:\GitLab-Runner\config.toml` 1. (Optional) Update Runners `concurrent` value in `C:\GitLab-Runner\config.toml`
to allow multiple concurrent jobs as detailed in [advanced configuration details](https://docs.gitlab.com/runner/configuration/advanced-configuration.html). to allow multiple concurrent jobs as detailed in [advanced configuration details](../configuration/advanced-configuration.md).
Voila! Runner is installed, running, and will start again after each system reboot. Voila! Runner is installed, running, and will start again after each system reboot.
Logs are stored in Windows Event Log. Logs are stored in Windows Event Log.
...@@ -75,6 +78,10 @@ Logs are stored in Windows Event Log. ...@@ -75,6 +78,10 @@ Logs are stored in Windows Event Log.
``` ```
1. Download the binary for [x86][] or [amd64][] and replace runner's executable. 1. Download the binary for [x86][] or [amd64][] and replace runner's executable.
You can download a binary for every available version as described in
[Bleeding Edge - download any other tagged release](bleeding-edge.md#download-any-other-tagged-release).
1. Start the service: 1. Start the service:
```bash ```bash
...@@ -107,10 +114,10 @@ gitlab-runner install --user ".\ENTER-YOUR-USERNAME" --password "ENTER-YOUR-PASS ...@@ -107,10 +114,10 @@ gitlab-runner install --user ".\ENTER-YOUR-USERNAME" --password "ENTER-YOUR-PASS
If you encounter a _The service did not start due to a logon failure_ error If you encounter a _The service did not start due to a logon failure_ error
while starting the service, please [look in the FAQ](../faq/README.md#13-the-service-did-not-start-due-to-a-logon-failure-error-when-starting-service-on-windows) to check how to resolve the problem. while starting the service, please [look in the FAQ](../faq/README.md#13-the-service-did-not-start-due-to-a-logon-failure-error-when-starting-service-on-windows) to check how to resolve the problem.
If you don't have a Windows Password, Runner's service won't start but you can If you don't have a Windows Password, Runner's service won't start but you can
use the Built-in System Account. use the Built-in System Account.
If you have issues with the Built-in System Account, please read If you have issues with the Built-in System Account, please read
[How to Configure the Service to Start Up with the Built-in System Account](https://support.microsoft.com/en-us/kb/327545#6) [How to Configure the Service to Start Up with the Built-in System Account](https://support.microsoft.com/en-us/kb/327545#6)
on Microsoft's support website. on Microsoft's support website.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment