Questions tagged [build-triggers]
52 questions
1
vote
0 answers
Build trigger don't get saved in Jenkins
We have a nighly build that triggers build of many different projects to verify external testing like contracts and such to avoid triggering such tests on every checkin.
However lately we have encountered a problem, if you open a build configuration…

Jimmy Byström
- 93
- 4
1
vote
1 answer
What is the exact use of Run continuous integration triggers for committed changes and other features in TFS 2017 Gated Build?
I am bit confused with the options that are provided in the TFS 2017 Build under the Triggers section. I have a two separate build definitions one is used for code check-in i.e. called Gated Build and other is Manual build which we used for code…

SRP
- 999
- 4
- 21
- 39
1
vote
1 answer
Jenkins : Use "Build after other projects are built" and "Build periodically" at the same time
I have two jobs, p1 and p2.
Conditions that trigger p2:
p1 build is completed
Every Monday
But I know "Build after other projects are built" and "Build periodically" do not trigger at the same time.
Is there any way to solve this?

Hsiao-I Yang
- 65
- 2
- 10
1
vote
1 answer
Why the duration of build process of Cloud Build for ASP.NET Core & Angular is so long?
An ASP.NET Core API project with Angular can be built in less than one minute in the local machine, but when I use Build Trigger of Google Cloud Builder to automatize the process it takes forever. I am setting the cloudbuild.yaml as following. The…

Mehmet Oz
- 11
- 2
- 3
1
vote
0 answers
Selecting correct build artifacts for pull request release combining 4 different builds artifacts
So I have a application split in 4 different repositories which all have their own Azure Pipeline build. But the artifacts of these 4 builds are deployed in one release (into one application).
On a check-in (pull request merge) on our development…

Erik Steinebach
- 367
- 2
- 14
1
vote
1 answer
Passing a json-string command arg in a YAML file
I'm trying to run a command which changes kubernetes cronjob image value as described here.
But instead of typing this command to cmd i'm trying to run it via Container Registry's build trigger.
I tried ' and \ as escape chars.
steps:
-…

Tamer Aktaş
- 416
- 4
- 13
1
vote
2 answers
Webhooks showing error 404, Build trigger in Jenkins not working when Jenkins is closed
am new to Jenkins and is searching for one answer. Iam trying to configure Jenkins with Gitlab and is facing issues when I add Webhooks or Jenkins CI Integration in Gitlab. Gitlab is not able to connect to Jenkins.
Also when I close Jenkins, the…

VISHNU NAIR
- 11
- 1
- 4
1
vote
0 answers
How to schedule Jenkins to run based on Poll SCM and Periodically on same job?
I want to configure the Jenkins in such a way that it should run based on Poll SCM(whenever there is a change) and also every Night Periodically (At 10:00).
I want to set only one job for this task.is it possible?
Is it Possible to run Periodic…

mayur usdad
- 11
- 3
1
vote
1 answer
Using RabbitMQ build trigger in Jenkins
I have setup a RabbitMQ server on a VM in my machine - I have verified through Rabbit MQ web client as well as python code that I am able to publish and receive messages in and out of a queue.
I have setup Jenkins in another VM. I have verified that…

sradhakrishna
- 99
- 1
- 5
1
vote
0 answers
TeamCity VCS build trigger by regex works strange
I use TeamCity 10 for continuous integration and there is a problem with build trigger configuring. I need to add build to build queue by matching special word in VSC commit comment, so I make VCS trigger with regular…

Alex
- 161
- 13
1
vote
1 answer
Hudson not building projects when SVN post-commit trigger received
I am trying to set up Hudson continuous integration server so that any SVN commits will trigger a new build. I've seen lots of questions and answers on stackoverflow regarding configuring the SVN server, but not much on configuring Hudson.
I have…

John Q Citizen
- 3,138
- 4
- 26
- 31
0
votes
0 answers
Build trigger task in Azure Devops not getting executed for template based pipelines
I have Azure Devops pipeline A to tiger another pipeline (pipeline B in the same project). Here pipeline B has some object type parameters as below and
parameters:
envList:
- production
- dr
alertList:
- alertnumber: 01
alertrulename:…

Vowneee
- 956
- 10
- 33
0
votes
1 answer
Update the value of parameterizedCron from the Jenkins Declarative Script
I want to change the value in the Schedule box in Build periodically with parameters in a Jenkins job (see the image) using script in a declarative script while keep everything else the same.
enter image description here
Here is what I…

Jack Chung
- 1
- 2
0
votes
1 answer
GCP CloudBuild -> Failed to trigger build: unrecognized arguments
I want to run a trigger by passing some substitution values by using gcloud command. Here is my command:
gcloud beta builds triggers run my-service --branch=test-deploy-of-history --project=dev-project --substitutions=_SERVICE_NAME=flow
After…

Md. Omar Hasan
- 45
- 5
0
votes
1 answer
Can I trigger a build on the master branch of repo A whenever there is a merge to master happens on repo B through Jenkinsfile?
I have 5 java microservices where whenever in any of those 5 services a developer merges the code to master, it has to trigger an api-testing microservice that will initiate testing for it. For now I am manually triggering the jenkins "build with…