Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
2 replies
32 views

Let's say you have a repository in gitlab. For facilitated distribution of the application and according development throughout a team, you convert the app into a Docker Container, which can be ...
DevelJoe's user avatar
  • 1,552
0 votes
0 answers
81 views

I get this error in my pipelines: Health check container logs: 2025-11-18T09:45:19.064500182Z FATAL: No HOST or PORT found Service container logs: 2025-11-18T09:45:19.061855973Z ...
Lehks's user avatar
  • 3,368
Advice
1 vote
2 replies
73 views

There are several questions on stack overflow asking how to get the current branch name on GitLab. The interwebz are full of countless variations of that same question. The answer that is always ...
Mike Nakis's user avatar
Advice
2 votes
0 replies
52 views

GitLab seem to accept jobs containing anything, including keywords that aren't normally allowed in a job. I've not tested, but this question even suggest that one could even make the hidden job a ...
skyking's user avatar
  • 14.6k
0 votes
0 answers
37 views

I want to add to my gitlab-ci a stage that is triggered based on two factors: If a particular stage "a" was also triggered. If a file was added or removed in a directory (not changed). I ...
Remchuk's user avatar
Best practices
1 vote
3 replies
73 views

Our C++ project's existing .gitlab-ci.yml reads simply: executable: stage: build tags: - C++ - Boost script: - gmake -C src -j11 artifacts: name: the executable paths: -...
Mikhail T.'s user avatar
  • 4,256
1 vote
0 answers
36 views

I have a quite complex GitLab CI config structure which is distributed via multiple files. . ├── .gitlab-ci.yml └── .gitlab-ci.d    ├── main.yml   └── release_main.yml The gitlab-ci.yml looks like ...
MaKaNu's user avatar
  • 1,076
0 votes
0 answers
48 views

I’m trying to build and archive my React Native iOS app using GitLab CI/CD, but the build fails during the archive step. Below is the error message I get: note: Disabling previews because ...
Somnath Sabale's user avatar
0 votes
1 answer
35 views

I'm trying to build a GitLab pipeline that calls a Docker component and does the Docker build, scan, and push automatically. My pipeline structure is as below. default: tags: - eks-lnx-prd ...
dude0786's user avatar
2 votes
1 answer
89 views

My GitLab 18 instance is suggesting me to use inputs instead of variables; Using inputs to control pipeline behavior offers improved security and flexibility. Consider updating your pipelines to use ...
jerome2710's user avatar
0 votes
1 answer
35 views

Given a pipeline with number #123 for the server. How to choose logs for the all the failed jobs in pipeline via cli? I presume that it could be something like this: job_ids = glab ci <get jobs> ...
Irina's user avatar
  • 1,417
0 votes
0 answers
90 views

Log: client.go:14:2: reading gitlab.ts.gitlab.aws.de/ds/l2/clients/go.mod at revision clients/v1.0.1: git ls-remote -q origin in /go/pkg/mod/cache/vcs/...
der papa's user avatar
0 votes
0 answers
48 views

Problem to solve How to prevent Developer/ Maintainer to manually re-run any GitLab jobs of the successful pipeline. Steps to reproduce Create a new pipeline which will executed on merge_request only....
Yogesh's user avatar
  • 313
0 votes
3 answers
112 views

I have a CI script on my gitlab repositories to publish plugins for my application. My plugins can either be published in debug or release. The steps for doing them are slightly different, so i have 3 ...
cboittin's user avatar
  • 419
0 votes
1 answer
75 views

I'm writing a pytest that should communicate to Docker containers through shared memory. Locally, that's pretty easy to achieve using something like this: # Create a shared memory block shm: ...
user2416984's user avatar
0 votes
0 answers
72 views

There are answers such as Run pipeline on gitlab when branch is deleted and even documentation on GitLab's site like https://docs.gitlab.com/ci/environments/#stopping-an-environment that make some ...
Wayne Werner's user avatar
  • 52.3k
5 votes
1 answer
243 views

I have a requirement to set tags for the selection of GitLab runners where tags differ per environment. Therefore, I need the tag to be set according to the value of $CI_COMMIT_BRANCH or $...
Alex Harvey's user avatar
  • 15.6k
-1 votes
1 answer
64 views

I write a GitLab CI YAML. This: test: script: - echo 'hello: world' Fails with the error: "This GitLab CI configuration is invalid: jobs:test:script config should be a string or a nested ...
obe's user avatar
  • 7,844
-1 votes
2 answers
412 views

rules: - if: $CI_PIPELINE_SOURCE == "merge_request_event" - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS when: never - if: $CI_COMMIT_BRANCH I've seen this ...
skyking's user avatar
  • 14.6k
-1 votes
1 answer
34 views

I currently have a docker compose script that brings up a few containers and runs them against some hardware that is installed on a local network. The software in these containers requires that ...
Ender's user avatar
  • 1,914
1 vote
1 answer
67 views

I have a Codesign error from my iOS Cordova build which I sign and finish building with fastlane. We have multiple Projects with this setup now but for some reason this one project does not want to ...
TIll Wegmüller's user avatar
0 votes
1 answer
82 views

I have below snippet from a gitlab ci yml file install-gw: stage: integration-test resource_group: integration-test tags: - ag-test script: - chmod +x ./integration-tests/scripts/...
Aatif Akhter's user avatar
  • 2,206
0 votes
1 answer
80 views

I have been struggling to filter my GitLab so that it runs either a full regression or a subset of smoke tests depending on the TestCafe meta tag. Info on the meta tag can be seen here. So I have ...
BruceyBandit's user avatar
  • 4,326
0 votes
1 answer
206 views

On your own machine Docker downloads images once and uses them again and again. But on Gitlab CI, things look a little different. Usually you use a docker-in-docker Container called dind which ...
Janning Vygen's user avatar
0 votes
1 answer
116 views

I have a gitlab-runner with docker executor. There is a pipeline that builds a maven multi module project. One of the modules uses frontend-maven-plugin , that: installs node and npm cd into ...
Georgi Ovcharov's user avatar

1
2 3 4 5
180