ilia
ilia

Reputation: 1132

How to install gitlab-runner for Ubuntu ARM host?

  1. I tried to install from package

sudo curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash
sudo apt-get install gitlab-runner

Getting

E: Unable to locate package gitlab-runner

  1. Trying to download package

sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-arm

Getting ERROR 403: Forbidden

Upvotes: 3

Views: 745

Answers (2)

VonC
VonC

Reputation: 1324238

Note that, with GitLab 17.0 (May 2024), you would not have to install anything (on SaaS only gitlab.com, for Premium or Ultimate, not on the free plan):

Introducing hosted runners on Linux Arm

We are excited to introduce hosted runners on Linux Arm for GitLab.com. The now available medium and large Arm machine types, equipped with 4 and 8 vCPUs respectively, and fully integrated with GitLab CI/CD, will allow you to build and test your application faster and more cost-efficient than ever before.

We are determined to provide the industry’s fastest CI/CD build speed and look forward to seeing teams achieve even shorter feedback cycles and ultimately deliver software faster.

https://about.gitlab.com/images/17_0/larger-runners.png -- Introducing hosted runners on Linux Arm

See Documentation and Issue.

Upvotes: 0

scinart
scinart

Reputation: 466

Maybe something goes wrong at the backend of gitlab.com

You can try other mirrors, e.g.: https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ci-multi-runner/

Upvotes: 1

Related Questions