All Questions
Tagged with jenkins-pipeline gitlab
138 questions
0
votes
0
answers
60
views
Jenkins and Gitlab Pipeline Integration
I have an internally hosted gitlab and jenkins server. I am an embedded developer and use jenkins with custom hardware to test on my teams hardware platform.
All of my Jenkins jobs are multibranch ...
-1
votes
2
answers
118
views
Gitlab merge PRs only if jenkins pipeline succeeded
I'm trying to sync my gitlab PRs with a jenkins pipeline.
I wish that for everytime someone opens a PR to branch "dev", a jenkins pipeline named "PRBuilder" will be triggered.
If ...
1
vote
0
answers
63
views
System hang error step build net core with jenkins pipeline on ubuntu?
I try deploy system net core on vps ubuntu , but system hang .Info of vps : ram 1 gb , cpu 1 core , ssd 21gb .
System hang step dotnet build .
Script pipeline
pipeline
agent any
stages {
stage('...
0
votes
0
answers
28
views
Can Jenkins auto add Webhook in Gitlab (with any plugins)?
I have the access token for Gitlab and configured it in Jenkins. I now want to add a task in Jenkins that uses my token and uses the JenkinsFile from my project, is there any way I can configure the ...
0
votes
0
answers
55
views
Gitlab's tag event is not triggering the jenkins multibranch pipeline
My goal is to trigger a multibranch pipeline in jenkins when a tag is created in gitlab.
This is my trigger config in jenkinsfile :
triggers {
gitlab(
triggerOnPush: true, ...
0
votes
0
answers
78
views
Hook executed successfully but returned HTTP 403 in Gitlab Webhooks after updating Jenkins to Version 2.452.1
I have updated Jenkins to 2.452.1 version. After the update I am trying to trigger Merge request from Gitlab to jenkin, but for some reason my webhooks are not testing successfully. When I try to ...
0
votes
0
answers
121
views
How to use Jenkins git parameter plugin with environment variables
I configured several Jenkins jobs via declarative pipeline. I synced the job names with my gitlab repositories so I can checkout in Jenkins like:
git url: https://gitlab-server/${JOB_BASE_NAME}.git
So ...
0
votes
0
answers
135
views
Can't retrieve tags for jenkins build, using git parameter plugin
I have added a git parameter plugin named as TAG, which is supposed to list all tags present in my Gitlab repository. I also have added default tag value as v1.0.0. There are other set of parameters ...
1
vote
1
answer
251
views
Issue with GitLab Plugin in Jenkins Multibranch Pipeline - URL Encoding Problem
We are setting up a CI/CD Pipeline process for our SFDX project.
We've used GitLab as our source code repository.
And Jenkins - Multibranch pipeline project for deployment.
I'm encountering an issue ...
-1
votes
1
answer
109
views
Jenkins webhook from gitlab - implementing different autobuild strategies
Note: I have webhooks working currently. This question is around design and implementation.
I am trying to design the process of using webhooks to trigger a build in Jenkins and specifically what ...
0
votes
1
answer
504
views
Jenkins Gitlab plugin, execute pipeline on a merge request or on the master branch
I'm trying to get my Jenkins multi branch pipeline to get triggered by Gitlab :
A push on the master branch
Any merge request that gets opened
Gitlab plugin Jenkins doc
Webhook works fine and ...
-1
votes
1
answer
1k
views
Jenkins multibranch pipeline discover new branch
In Jenkins how can I discover new branches without triggering a build? I have setup the Jenkins integration with GitLab but I only want to trigger builds manually for my multibranch pipeline. When I ...
0
votes
1
answer
507
views
Jenkins Issue fatal: unable to access : URL using bad/illegal format or missing URL
My problem lies in the last stage of my Jenkins Pipeline, where Jenkins is expected to commit the updated pom.xml file to our application repository hosted on GitLab.
Below are the necessary data.
...
1
vote
0
answers
540
views
Getting 'change you requested was rejected "422"' while using Git Hooks to trigger the pipeline
I'm trying to trigger a pipeline with git-hooks. I've set a custom_hooks [post-receive] inside the git repository. Gitlab is running on the docker container.
When I'm pushing the code, according to my ...
1
vote
1
answer
122
views
Config Gitlab webhook with gitlabMergeCommitSha parameter
I've a pipeline (groovy) that define some stage which using gitlabCommitStatus
The problem is when jenkin checkout using gitlab plugin with merge action (merge with squash commits option) it has issue ...