Questions tagged [gitlab-ci-runner]
This is GitLab Runner repository, this application run tests and sends the results to GitLab CI. GitLab CI is the open-source continuous integration server that coordinates the testing.
2,381
questions
0votes
0answers
10views
Gitlab pipeline running in VM and not in Gitlab server
I have a Gitlab server from the company where the project and the pipeline are configured. By default, every time a commit is done, the pipeline starts to execute in the Gitlab server.
I have my ...
0votes
1answer
28views
How to get immediate output from a job run within gitlab-runner?
The command gitlab-runner lets you "test" a gitlab job locally. However, the local run of a job seems to have the same problem as a gitlab job run in gitlab CI: The output is not immediate!
...
0votes
0answers
16views
Unable to push or pull images to/from private docker registry
I have recently migrated my application from one aws account to another account.
During which I have changed docker registry url from docker.app.prod.aws.abc.com to docker-hd.app.prod.aws.abc.com.
We ...
1vote
0answers
14views
Irregular TIMEOUTs in Docker Operations between GCP GKE and AWS ECR
In my company, we have a GitLab CI/CD pipeline running on the GitLab Runner on Kubernetes (GKE). In that process, we push Docker images to a private repository in AWS ECR. The processes access the ...
0votes
0answers
18views
Docker image is not sent to remote server
I have built a docker image in local server and I want it to deploy in remote server. I have tried SSH authentication before script in stage:deploy . I have attached the before script below. now i ...
1vote
0answers
17views
Flutter Gitlab CI CD implementation for iOS build profile not found error
Currently i am trying to implement CI for generate iOS and Android builds. for me Android Build generated successfully but when starts build iOS build it gives following error :
Running Xcode build......
2votes
1answer
85views
Gitlab CI prepare environment: Error response from daemon: hcsshim::CreateComputeSystem
I have created a windows image that I pushed to a custom registry.
The image builds without any error. It also runs perfectly fine on any machine using the command docker run.
I use a gitlab runner ...
1vote
1answer
44views
Stop the gitlab pipeline if previous stages failed
I have a gitlab pipeline which consiste of multiple stages[checkout->build->test->Deploy->cleanup->validation->terminate ec2].I have 3 requirement.
if any stage before the deploy ...
1vote
0answers
18views
xcodebuild command fails in Gitlab Runner
I am setting up Gitlab CI in my project, xcodebuild command fails in gitlab-runner. However, the following command to clean Xcode Project works perfectly in terminal
xcodebuild clean -workspace ~/...
0votes
0answers
15views
Running VM tests with GitLab Pipelines
I have a problem with running in VM tests using Gitlab Pipeline (Windows Server 2019).
I want to specify that when I run manually in a VM, everything works perfectly.
When I run in the GitLab Pipeline,...
2votes
1answer
22views
Windows gitlab runner stop execute job
ci, and i-ve installed my gitlab-runner on a ec2 machine Ubuntu Server 18.04 LTS t2.micro, and when im pushing my code to start the build i get this
But it keeps stucked like this and after 1 hour it ...
0votes
0answers
18views
Integration into gitlab pipeline adding sonarqube (gitlab + sonarqube + runners)
I'm doing an integration in the gitlab pipeline by adding sonarqube, for that I needed to configure some things like:
sonarqube is running on docker gitlab-runners is running on my machine application ...
0votes
1answer
19views
Gitlab runner on aws ec2 : Have one ec2 launching multiple concurrent jobs
I followed this tutorial : https://docs.gitlab.com/runner/configuration/runner_autoscale_aws/
And it works perfectly ! I put the runner in only one branch for testingBut in our pipeline with have like ...
0votes
2answers
43views
How to keep docker image build during job across two stages with Gitlab CI?
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 push ...
0votes
0answers
22views
Run GitLab Runner on Docker Desktop (for testing)
I would like to run a GitLab Runner on Docker Desktop (I run a GitLab instance and a runner locally for testing purposes).
Unfornately, I could not find out how to map the Docker socket. The manual ...