gitlab-ci Questions
4
I am looking for an easy and clean way to publish artefacts build with GitLab CI onto Artifactory.
I was able to spot https://gitlab.com/gitlab-org/omnibus/blob/af8af9552966348a15dc1bf488efb29a8ca...
Pax asked 7/9, 2015 at 16:10
8
I have been playing around Gitlabl CI but for some reason I can't get my tests to "passed". It always says npm: command not found
My Gitlab CI config looks like this:
image: node:latest
# This fo...
Flare asked 26/6, 2017 at 7:11
2
Solved
Is there a way fail my entire pipeline if the user triggered the pipeline and didn't set a variable called options with a value?
I've tried things like only and rules but they just skip the job ins...
Switchblade asked 6/7, 2020 at 15:21
2
I want to use buildah from gitlab-ci, in order to build an image, run a container from it and do some tests against it.
My current gitlab-ci is:
tests:
tags:
- docker
image: quay.io/buildah/stab...
6
I'm trying to set up a gitlab ci pipeline for a python project and I'm having some issues with sonarqube client which is not able to pars the coverage.xml file
The error I'm getting is the follow...
Virgel asked 26/7, 2019 at 12:33
3
I am new to docker and jenkins. However ultimately I am creating a job in jenkins so that I can delete the volume cache of gitlab-runner which is stored in our linux machines (CentOS7)
To achieve t...
Embitter asked 24/2, 2021 at 6:15
13
Solved
I have GitLab & GitLab CI set up to host and test some of my private repos. For my composer modules under this system, I have Satis set up to resolve my private packages.
Obviously these priva...
Dedrick asked 5/9, 2014 at 15:26
3
Solved
I'm trying to set up a continious integration for my GitLab project for the first time and I am struggling to get the 'test' stage working. Right now I have my test subfolder and 2 almost identical...
Eclipse asked 6/10, 2018 at 10:38
4
Our automation tests run in gitlab CI environment. We have a regression suite of around 80 tests.
If a test fails due to some intermittent issue, the CI job fails and since the next stage is depend...
Matelote asked 27/8, 2020 at 9:23
3
Solved
I'm trying to implement a pipeline that package and copy Python code to S3 using Gitlab CI.
Here is the job that is causing the problem:
package:
stage: package
image: python:3.8
script:
- apt-...
Disobey asked 2/9, 2020 at 16:36
8
Solved
When a non-owner dev pushes a branch to our Gitlab repo, it returns a "pipeline failed" message, with the detail "Pipeline failed due to the user not being verified". On the dev...
Petuu asked 7/6, 2021 at 16:14
1
I have a pipeline on Gitlab that have multiple steps. One step in the middle is optional but configured as mandatory and today it started to fail.
In Gitlab UI when it fails all next pipeline items...
3
We're migrating our CI from Phabricator/Jenkins to Gitlab and the UX for viewing docs is really not very good. The current workflow from the Merge Request page is
Click build icon > click stage...
Unbeknown asked 30/5, 2022 at 7:34
1
I am a beginner and this is the first time I am building a CI/CD pipeline for my maven java selenium project and trying to run the pipeline locally by installing a runner in my local machine.
Every...
Thomism asked 8/2 at 4:22
4
Solved
3 screenshots to explain the issue
When I run the pipeline I've an error...
But the file exists
And it's good
4
Solved
I am trying to setup CI for my flutter project on gitlab but I don't understand where to start or what I have to do.
Can anyone help me?
Thanks
Yep asked 29/1, 2019 at 8:40
5
Solved
In Gitlab ci We have declared our variables like below
USER_NAME:
value: ""
description: "Enter Username"
File_Name:
description: "Enter the file name"
It only ...
6
I hosts my repository with gitlab.com and I install runner in the DigitalOcean. It ran fine until today 16March2019 14:24 Thailand time.
# gitlab-runner status
Runtime platform arch=amd64 os=linux...
Elate asked 16/3, 2019 at 7:30
2
I have java project which using testcontainers for integration test. I want to implement gitlab ci for that stage but I've got that error
java.lang.IllegalStateException: Could not find a valid Doc...
Frequentative asked 5/7, 2022 at 11:33
3
Solved
When we use extends and when we use anchor tag ?
Please refer below CI CD pipeline
stages:
- stage1
.random-variables:
variables:
ABC: ${XYZ}
.hidden-job: &hidden-job
stage: stage1
im...
Transnational asked 4/1, 2023 at 12:0
8
Solved
I'm currently using gitlab.com (not local installation) with their multi-runner for CI integration. This works great on one of my projects but fails for another.
I'm using 2012R2 for my host with ...
Shotten asked 12/10, 2016 at 19:18
7
Solved
I'm trying to push an image to gitlab registry.
I've done it many times, so I wonder why I get this error.
I build the image with latest tag:
Successfully tagged registry.gitlab.com/mycompany/r...
9
Solved
I created a custom docker image and push it to docker hub but when I run it in CI/CD it gives me this error.
exec /usr/bin/sh: exec format error
Where :
Dockerfile
FROM ubuntu:20.04
RUN apt-get upd...
Disentomb asked 9/8, 2022 at 1:26
1
Solved
GitLab has added the CI/CD components in their latest versions, and I would like to use it to build a sort of library to use in my projects.
Except in some components I would like to include some f...
3
I want to init my service in the test stage using a sql file.
test:
services:
- postgres:latest
variables:
POSTGRES_DB: test
stage: test
image: gliderlabs/herokuish:latest
script:
- setup...
Mercurio asked 23/11, 2018 at 15:13
© 2022 - 2024 — McMap. All rights reserved.