Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
58 views

I want to frequently test a Python application I'm developing with uv, which I publish to a private repository on a GitLab instance. I've generated an access token with read access to the repo and I ...
FLKR's user avatar
  • 67
0 votes
0 answers
20 views

We have the following Jenkins pipeline script. pipeline { agent any stages { stage('Run in Sandbox'){ steps { dir('Pot') { checkout ...
Timothy A Calderwood's user avatar
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
Best practices
1 vote
1 replies
45 views

i've a question. We were using Gitlab's Instance runners but for security reasons, we wanna move it to private runner. I tried using ec2 as runner but it can't scale and is so slow for concurrent runs....
berkayln's user avatar
  • 1,003
0 votes
0 answers
24 views

I have the following jobs: .build-image: extends: .build-docker-image stage: build variables: COMPOSER_HOME_DIR: /kaniko/.composer BUILD_ARGS: > COMPOSER_HOME=${...
Tarta's user avatar
  • 2,117
1 vote
2 answers
88 views

I forked a GitHub repository from my friend’s account, but when I try to push my commits, I get this error: remote: Permission to Fatima-Ennouari/test.git denied to Ridafadli. fatal: unable to access ...
ADIL RADIDI's user avatar
0 votes
0 answers
36 views

I have a Gitlab pipeline that has a number of (expensive) steps, which I normally want to be manual and allowed-to-fail, but I want them to run and to succeed when the branch is actually being merged. ...
David Vonka's user avatar
0 votes
0 answers
29 views

I have a self hosted GitLab CE for a project management team. I have created a Group with 1 owner and 2 maintainers, and this group is linked to 3 different projects. So the group should be: owner (...
drn_svq's user avatar
  • 11
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
74 views

In our GitLab Pipeline we use Cloud Native Buildpacks (CNB) with the Kubernetes executor & unprivileged Runners (without pack CLI & docker) as discribed in this so answer. Additionally to the ...
jonashackt's user avatar
  • 14.8k
1 vote
1 answer
22 views

The site works fine on my custom domain (e.g. https://www.example.com/), but in the generated sitemap.xml (and also in RSS feeds) the URLs still point to the GitLab Pages default URL (https://project-...
Udi's user avatar
  • 30.8k
1 vote
1 answer
67 views

According to the documentation, "Subsequent jobs in the same pipeline can use the cache, if the dependencies are identical." I have the following in my gitlab-ci.yml file: slowcompile: ...
James Foster's user avatar
  • 2,250
0 votes
0 answers
13 views

In project P we use an external "CI/CD configuration file" set to ".gitlab-ci.yml@library". for a feature branch of P ("my_feature_p") I would like to test some changes ...
gatinueta's user avatar
  • 457
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
-1 votes
2 answers
136 views

I have a branch in GitLab with 18 commits, with a lot of back and forth trying the right way to escape something. Ideally, the branch should have three commits, changing three different parts of the ...
JF Meier's user avatar
  • 36.7k
-2 votes
1 answer
61 views

Obviously I don't want binary files like jar or exe in my git repo so GitLab is configured to block commits that contain jars, exe files, msi files etc. However, I do need gradle-wrapper.jar in there. ...
opticyclic's user avatar
  • 8,222
0 votes
1 answer
241 views

We have an existing GitLab CI Template using parallel matrix to run a job in parallel with different variables. include: - project: 'ci-templates' ref: main file: - Container/Container....
Erik's user avatar
  • 197
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
-3 votes
2 answers
100 views

Is it's possible to use source repo as dependency instead of jar? I got few legacy projects in my selfhosted gitlab: core(child) api(parent) web(parent) The "core" project is dependency ...
SubGunDH's user avatar
0 votes
0 answers
74 views

I tried using a Docker image called "CodiumAI PR-Agent," which can perform code reviews using AI. To set this up, I installed GitLab Runner on a new server and created a .yml file according ...
EvaHHHH's user avatar
  • 355
0 votes
1 answer
150 views

When I try to create new token with GitLab API like this: curl --request POST --header "PRIVATE-TOKEN: glpat-" --data "name=test-token-short-ttl" --data "scopes[]=...
Overlord's user avatar
-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
2 votes
2 answers
126 views

I'm using semantic-release in a GitLab CI pipeline. The release fails at the @semantic-release/git plugin step due to this error: remote: ERROR: New commit has non-whitelisted author email: [semantic-...
user22730912's user avatar
-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,904

1
2 3 4 5
368