From 767349763a7e9f9215f50ca9752fbb3e5874534f Mon Sep 17 00:00:00 2001 From: Vic Date: Thu, 6 Aug 2026 15:28:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index f223600..711d049 100644 --- a/README.md +++ b/README.md @@ -54,4 +54,23 @@ I'm gonna use IDE of JetBrains(Win10): - Token: token you've just got ## CI/CD Setups +Since we using self-hosted GitLab instance, let's install GitLab Runner +```bash +sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64 +``` +```bash +# make it executable +sudo chmod +x /usr/local/bin/gitlab-runner +``` + +```bash +#create user for runner +sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash +``` + +```bash +# set it as service +sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner +sudo gitlab-runner start +```