18,385 questions
0
votes
1
answer
62
views
gitlab+XCode: Unable to find a device matching the provided destination specifier
Gitlab runner on M4 Mac Mini 2024, XCode 26.2, supported platforms: iOS, native UIKit swift project. Cocoapods.
Trying to run tests via fastlane:
run_tests(workspace: 'Project.xcworkspace',
...
0
votes
0
answers
66
views
How to specify multiple pipeline sources for a gitlab-ci.yml build
I'm working on a CI script for a gitlab project. The build runs in two stages. The first compiles and packages the code. The second deploys the packaged code to two different remote servers (it's a ...
-3
votes
0
answers
129
views
Why does "git pull" locally add uncommitted changes to the Git index? [closed]
I have a Go project.
Today, I performed a "git pull" on the microservice repository, and uncommitted changes to the "go.work.sum" file appeared in my Git index.
I've never had this ...
0
votes
0
answers
97
views
Gitlab runners sporadically failing with Docker permission error [closed]
Update: Solved the immediate issue by using terraform to destroy and recreate the resource, starting from scratch and setting up each individual runner manually. This doesn't help me understand the ...
-5
votes
0
answers
76
views
IntelliJ marks files as modified when I add tabs/spaces — how to stop this? [closed]
In IntelliJ IDEA, whenever I press Tab or add spaces, the file is marked as modified even though nothing meaningful has changed. This creates noisy diffs and clutters my GitLab merge requests with ...
Advice
0
votes
4
replies
58
views
How can I suppress false positives in the Gitlab code quality report?
The Gitlab code quality tool is producing a lot of false positives for our team due to a third-party library we use. We're unable to replace the third-party library, since its use has been mandated by ...
1
vote
0
answers
55
views
Installing GitLab dependency without username/token
I can install my-package from the shell without providing a token, using pip install is OK:
pip install rdmacontrol --index-url https://gitlab.com/api/v4/projects/44753656/packages/pypi/simple
I am ...
0
votes
0
answers
38
views
Gitlab CI: Rules based on array parameter
Is there a solution to create a rule that check if an array parameter contains a given element?
Below example is not a valid one.
spec:
inputs:
ARRAY:
type: array
...
Advice
0
votes
1
replies
19
views
Merging base branches while ignoring a specific file
I know this has been asked a few times, and I know what I'm asking about is not the Gitlab way, but I have a very specific use-case.
I have 3 branches, DEV, STAGE and MAIN. Each of these branches is ...
0
votes
1
answer
67
views
Create gitlab merge request for project A while in project B
Let's say you have the following setup in gitlab:
Gitlab Group Developments, of which there is a Subgroup Subgroup, which in turn contains Template project X which provides a general structure for ...
Best practices
0
votes
0
replies
43
views
Gitlab show result from multiple pipelines on Merge Request page
We aare developing new features for our code which we use merge requests in Gitlab to a release branch where all features are collected. When doing the actual release we do a MR from release branch to ...
1
vote
1
answer
171
views
Running a tool with uvx from a private repo using an access token
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 ...
0
votes
0
answers
38
views
Merge conflict with GitLab Web IDE
I'm editing a file in a merge request in GitLab's Web IDE. While I'm working, someone else commits changes to the same file, which creates a merge conflict. When I'm ready to commit my changes, GitLab ...
0
votes
0
answers
58
views
Accessing to two or more Gitlab Projects in the same Jenkins pipeline file
We have the following Jenkins pipeline script.
pipeline {
agent any
stages {
stage('Run in Sandbox'){
steps {
dir('Pot') {
checkout ...
Advice
0
votes
2
replies
53
views
How to replicate locally automated API tests within gitlab CI
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 ...