Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gitlab-runner
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Seipel
gitlab-runner
Commits
cc118d21
Commit
cc118d21
authored
9 years ago
by
Kamil Trzcinski
Browse files
Options
Downloads
Patches
Plain Diff
Add docs for FreeBSD
parent
67221e86
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
docs/install/bleeding-edge.md
+3
-0
3 additions, 0 deletions
docs/install/bleeding-edge.md
docs/install/freebsd.md
+47
-0
47 additions, 0 deletions
docs/install/freebsd.md
with
51 additions
and
0 deletions
README.md
+
1
−
0
View file @
cc118d21
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
docs/install/bleeding-edge.md
+
3
−
0
View file @
cc118d21
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
docs/install/freebsd.md
0 → 100644
+
47
−
0
View file @
cc118d21
### 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.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment