8,976 questions
0
votes
0
answers
17
views
GitLab CI Allure Report Shows Garbled Characters in Console Output
I'm experiencing intermittent issues with Allure reports in GitLab CI where the console log occasionally displays garbled/corrupted characters instead of readable output.
This doesn't happen ...
1
vote
0
answers
31
views
Display GitLab CI Pipeline on CI_COMMIT_TAG
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 ...
0
votes
0
answers
21
views
Modify extended job variable on the fly through script
I have the following jobs:
.build-image:
extends: .build-docker-image
stage: build
variables:
COMPOSER_HOME_DIR: /kaniko/.composer
BUILD_ARGS: >
COMPOSER_HOME=${...
0
votes
0
answers
41
views
iOS archive failed in GitLab CI/CD: “SWIFT_OPTIMIZATION_LEVEL=-O expected -Onone (React-jsitracing)”
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 ...
0
votes
1
answer
67
views
Pull the docker image in GitLab registry from pipeline
I made a Kernel project (v5.15.15) in my GitLab account and setting up build pipeline.
Did some search and made a following .gitlab-ci.yml file.
stages: # List of stages for jobs, and their ...
0
votes
1
answer
33
views
GitLab Docker component usage
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
...
0
votes
0
answers
36
views
Make gitlab pipeline conditional on being the pipeline before the merge train one
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. ...
-2
votes
0
answers
57
views
Fastlane Match: “Couldn't decrypt the repo, please make sure you enter the right password” even though MATCH_PASSWORD is correct [closed]
I’m using Fastlane to upload my iOS app to TestFlight.
In my Fastfile, I have the following lane:
desc "Build and upload to TestFlight"
lane :beta do
match(
type: "appstore",
...
2
votes
1
answer
63
views
GitLab input values based on branch, like variables
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 ...
0
votes
1
answer
63
views
Cloud Native Buildpacks unprivileged lifecycle with bellsoft-liberica buildpack BP_JVM_TYPE JDK builds JRE-configured run image instead of JDK
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 ...
0
votes
1
answer
29
views
How to get **all failed** jobs logs for the certain gitlab pipeline number?
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> ...
0
votes
1
answer
152
views
Unable to create masked variable because: The value must have 8 characters
I want to set up a Git_CI_USER. I get the message “Unable to create masked variable because: The value must have 8 characters.” My GIT_CI_USER only has 7 characters. Perhaps the problem can be solved ...
0
votes
0
answers
87
views
Why am I pointing to the wrong Repository?
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/...
0
votes
0
answers
37
views
Docker-in-Docker - Unable to connect payara server to postgres docker instance on GitLab CI/CD Pipeline
In order to improve the testing process for my Java application I want to introduce postgres as the database for integration tests.
In my current approach I am utilizing the maven-docker-plugin to ...
0
votes
0
answers
44
views
Disable re-run option for successful GitLab pipeline jobs
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....