gitlab-ci-runner Questions
2
Solved
I installed gitlab-runner via sudo apt install gitlab-runner, configured it according to the tutorial and it worked well.
Now I want to change the user of the gitlab-runner. So I stop the service...
Limpopo asked 28/3, 2020 at 21:1
3
I have two branches: master and test. When I push to the master branch, my code is deployed to the first server by gitlab-ci. I want to deploy to a different server whenever I push to the test bran...
Emir asked 30/3, 2018 at 6:5
3
Currently, I have two main project.
1-) Vue Project which contains (webviews for IOS and Android, websites, and renderer for our Electron ) they are sharing components & API's.
2-) Electron ...
Battement asked 21/8, 2017 at 3:43
3
Solved
I am trying to create a pipeline in Gitlab-ci to run an ansible-playbook.
Here is my .gitlab-ci.yml file:
image: "my_ansible_image"
before_script:
- eval $(ssh-agent -s)
- echo &quo...
Phenylalanine asked 5/8, 2020 at 13:18
2
I am currently using serverless framework and setting up gitlab ci using shared runner.
Following is my gitlab-ci.yml:
image: node:latest
services:
- redis
cache:
paths:
- node_modules/
- j...
Imprison asked 25/10, 2017 at 9:1
1
Solved
I'm using GitLab Enterprise Edition 14.6.5-ee
I want to create a Git tag automatically when I merge a branch back to master. I'm fine with the actual Git commands; the problem is with the authentic...
Slovenia asked 11/5, 2022 at 14:24
4
Solved
I have a local GitLab server and gitlab-ci runner with Docker executor.
I want to use gitlab-ci to build (for the first stage) my Maven project. Since I use buildnumber-maven-plugin I added a Git s...
Jampan asked 10/4, 2020 at 19:14
2
Solved
We are using gitlab for CI/CD. my colleagues need pipeline, merge request, commit related status. How should I receive the mails from them and how did they receive my activity through mails? We are...
Gaselier asked 25/4, 2022 at 14:55
5
Solved
I use GitLab Runner for running CI jobs on AWS EC2 spot instances, using its autoscaling feature with Docker Machine.
All of a sudden, today GitLab CI failed to run jobs and shows me the following ...
Exaggeration asked 27/4, 2022 at 9:44
2
I don't manage to configure a cache directory, but somehow it does not work. I'm not even sure it takes the config.toml file.
my config.toml:
concurrent = 1
check_interval = 0
[session_server]
...
Luster asked 21/2, 2019 at 17:47
4
I tried to set up Gitlab Pages, until now I finished uploading my static website files👇
Uploading artifacts...
coverage/lcov-report: found 77 matching files
Uploading artifacts to coordinator......
Fagot asked 21/4, 2017 at 17:15
1
I'm trying to build a CI Pipeline with Gitlab CI/CD. My project is a really simple API based on Symfony. To create a consistent environment i'm using docker-compose with four very simple containers...
Presidio asked 25/3, 2018 at 17:0
1
Solved
I am trying to get gitlab’s CI to work properly with an external submodule.
I have a submodule in ANOTHER repository, so no relative path.
I do NOT want to use a SSH key solution.
I want to use ...
Gobioid asked 21/9, 2019 at 12:17
1
I have a docker-compose.yml file that sets up Gitlab, Container Registry and a Gitlab Runner.
version: '2'
services:
redis:
restart: always
image: sameersbn/redis:latest
command:
- --logleve...
Teresita asked 12/11, 2017 at 21:6
2
Solved
I use Gitlab runner on an EC2 to build, test and deploy docker images on a ECS.
I start my CI workflow using a "push/pull" logic: I build all my docker images during the first stage and p...
Reina asked 18/3, 2022 at 3:31
3
Solved
On a new WIN10 machine after installing gitlab-runner with shell executor(i.e powershell) and starting a CI build throws following error:
Preparing environment
ERROR: Job failed (system failure): p...
Franconian asked 19/6, 2021 at 19:33
1
Solved
I setup a GitLab runner on EC2 which triggers jobs on a Fargate ECS cluster.
I followed this tutorial step by step: https://docs.gitlab.com/runner/configuration/runner_autoscale_aws_fargate
During ...
Misguide asked 16/3, 2022 at 13:37
1
Problem
gitlab-runner in Powershell on build server finishes successfully (vb6.exe, devenv.com, msbuild.exe) if running in local terminal started with "run as administrator", whereas end...
Meyerbeer asked 3/1, 2022 at 10:49
2
I have autoscaled the gitlab-runner on AWS spot instances. And it works fine.
And I have an issue when running the jobs. Below is my .gitlab-ci.yml and it has two stages.
stages:
- build
- dev1:b...
Benzol asked 26/1, 2021 at 13:54
5
I am using rest API to run manual jobs in GitLab CI. When i start a manual job from UI I am able to define custom variables that i can use during the job. How can i define them when running job thr...
Tyrolienne asked 5/3, 2020 at 13:27
3
When I run my job on Gitlab CI/CD, after a while I obtain the following error message:
Job's log exceeded limit of 4194304 bytes.
How to change this limit?
Frasco asked 29/11, 2018 at 14:15
1
I want the Gitlab pipeline to be initiated only when there is a merge request. Not on commits to any branch.
only:
refs:
- merge_requests
changes:
- "**/*.json" except:
- $CI_MERGE_RE...
Hydrosphere asked 20/2, 2022 at 2:19
7
Solved
Maven is well installed on my gitlab-runner server. When executing mvn clean directly on my repo it works, when running my pipeline using Gitlab UI got this error :
bash: line 60: mvn: command not...
Margotmargrave asked 27/9, 2018 at 11:19
1
Solved
I'm completely new to trying to implement GitLab's CI/CD pipelines, but it's been going quite well. In fact, for my ASP.NET project, if I specify a Publish Profile in the msbuild command that uses ...
Ipa asked 27/1, 2022 at 15:3
2
I have a .gitlab-ci.yml file:
integration_test:
services:
- name: registry.gitlab.com/group/project/testmailserver:1.1
alias: "mail.email"
stage: test
script:
- ./gradlew -g /cache/.gradle -...
Protectorate asked 4/8, 2017 at 0:4
© 2022 - 2024 — McMap. All rights reserved.