Skip to content
Snippets Groups Projects
Commit cc118d21 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Add docs for FreeBSD

parent 67221e86
Branches
Tags
No related merge requests found
...@@ -61,6 +61,7 @@ The config file is automatically migrated when GitLab Runner was installed from ...@@ -61,6 +61,7 @@ The config file is automatically migrated when GitLab Runner was installed from
* [Install on OSX (preferred)](docs/install/osx.md) * [Install on OSX (preferred)](docs/install/osx.md)
* [Install on Windows (preferred)](docs/install/windows.md) * [Install on Windows (preferred)](docs/install/windows.md)
* [Install as Docker Service](docs/install/docker.md) * [Install as Docker Service](docs/install/docker.md)
* [Use on FreeBSD](docs/install/freebsd.md)
* [Manual installation (advanced)](docs/install/linux-manually.md) * [Manual installation (advanced)](docs/install/linux-manually.md)
* [Bleeding edge (development)](docs/install/bleeding-edge.md) * [Bleeding edge (development)](docs/install/bleeding-edge.md)
* [Install development environment](docs/development/README.md) * [Install development environment](docs/development/README.md)
......
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-darwin-amd64 * https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-darwin-amd64
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-386.exe * https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-386.exe
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-amd64.exe * https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-amd64.exe
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-386
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-amd64
* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-arm
You can then run the runner with: You can then run the runner with:
```bash ```bash
......
### Install on FreeBSD
**The FreeBSD version will be available once the 0.6.0 is released.
Currently you can use [Bleeding edge](bleeding-edge.md)**
Download the binary for your system:
```bash
sudo wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-amd64
sudo wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386
```
Give it permissions to execute:
```bash
sudo chmod +x /usr/local/bin/gitlab-ci-multi-runner
```
**The rest of commands execute as the user who will run the runner.**
Register the runner:
```bash
gitlab-ci-multi-runner register
Please enter the gitlab-ci coordinator URL (e.g. http://gitlab-ci.org:3000/ )
https://ci.gitlab.org/
Please enter the gitlab-ci token for this runner
xxx
Please enter the gitlab-ci description for this runner
my-runner
INFO[0034] fcf5c619 Registering runner... succeeded
Please enter the executor: shell, docker, docker-ssh, ssh?
docker
Please enter the Docker image (eg. ruby:2.1):
ruby:2.1
INFO[0037] Runner registered successfully. Feel free to start it, but if it's
running already the config should be automatically reloaded!
```
Run GitLab-Runner:
```bash
cd ~
gitlab-ci-multi-runner run
```
Voila! Runner is currently running, but it will not start automatically after system reboot.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment