DEV Community

Pradeep Kumar
Pradeep Kumar

Posted on • Edited on

4 1

Install Gitlab Runner on AlmaLinux OS

Run following commands:

  1. Install Git:
sudo dnf install git
Enter fullscreen mode Exit fullscreen mode
  1. Download gitlab-runner
curl -LJO "https://gitlab-runner-downloads.s3.amazonaws.com/latest/rpm/gitlab-runner_amd64.rpm"
Enter fullscreen mode Exit fullscreen mode
  1. Install gitlab-runner
sudo rpm -ivh gitlab-runner_amd64.rpm
Enter fullscreen mode Exit fullscreen mode

To run jobs concurrently, update following

sudo nano /etc/gitlab-runner/config.toml
Enter fullscreen mode Exit fullscreen mode

and update the desired value

concurrent = 5 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay