Commit c200c4f8 authored by Michael Kozono's avatar Michael Kozono

Merge branch 'selhorn-small-text-edits-runner-instructions' into 'master'

Fixed misspelling and made other edits

See merge request gitlab-org/gitlab!78716
parents 3f98e483 bcb31afd
# Download the binary for your system # Download the binary for your system
sudo curl -L --output /usr/local/bin/gitlab-runner ${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION} sudo curl -L --output /usr/local/bin/gitlab-runner ${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}
# Give it permissions to execute # Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner sudo chmod +x /usr/local/bin/gitlab-runner
# Create a GitLab CI user # Create a GitLab user
sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash
# Install and run as service # Install and run as a service
sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
sudo gitlab-runner start sudo gitlab-runner start
# Download the binary for your system # Download the binary for your system
sudo curl --output /usr/local/bin/gitlab-runner ${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION} sudo curl --output /usr/local/bin/gitlab-runner ${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}
# Give it permissions to execute # Give it permission to execute
sudo chmod +x /usr/local/bin/gitlab-runner sudo chmod +x /usr/local/bin/gitlab-runner
# The rest of commands execute as the user who will run the Runner # The rest of the commands execute as the user who will run the runner
# Register the Runner (steps below), then run # Register the runner (steps below), then run
cd ~ cd ~
gitlab-runner install gitlab-runner install
gitlab-runner start gitlab-runner start
# Run PowerShell: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7#with-administrative-privileges-run-as-administrator # Run PowerShell: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-windows-powershell?view=powershell-7#with-administrative-privileges-run-as-administrator
# Create a folder somewhere in your system ex.: C:\GitLab-Runner # Create a folder somewhere on your system, for example: C:\GitLab-Runner
New-Item -Path 'C:\GitLab-Runner' -ItemType Directory New-Item -Path 'C:\GitLab-Runner' -ItemType Directory
# Enter the folder # Change to the folder
cd 'C:\GitLab-Runner' cd 'C:\GitLab-Runner'
# Dowload binary # Download binary
Invoke-WebRequest -Uri "${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}" -OutFile "gitlab-runner.exe" Invoke-WebRequest -Uri "${GITLAB_CI_RUNNER_DOWNLOAD_LOCATION}" -OutFile "gitlab-runner.exe"
# Register the Runner (steps below), then run # Register the runner (steps below), then run
.\gitlab-runner.exe install .\gitlab-runner.exe install
.\gitlab-runner.exe start .\gitlab-runner.exe start
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment