54 questions
0
votes
0
answers
31
views
create cloud build trigger
Terraform "google_cloudbuild_trigger" resource failing to create trigger
#Resource
Terraform will perform the following actions:
# google_cloudbuild_trigger.cloud_build_trigger will be ...
0
votes
1
answer
787
views
TriggerBuild Could not queue the build because there were validation errors or warnings
I got an azure yaml pipeline I want to trigger via another pipeline.
The original pipeline has parameters defined like this:
parameters:
- name: Param1
default: val1
type: string
- name: Param2
...
1
vote
0
answers
320
views
Build trigger task in Azure Devops not getting executed for template based pipelines
I have Azure Devops pipeline A to trigger another pipeline (pipeline B in the same project). Pipeline B has some object type parameters as below
parameters:
envList:
- production
- dr
...
0
votes
1
answer
688
views
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 ...
0
votes
1
answer
634
views
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-...
0
votes
1
answer
128
views
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 ...
0
votes
2
answers
1k
views
How can I update substitutions values of google cloud build trigger using bash script?
I want to write a script where I will pass the values and the script will update all the substitutions values automically. In cloud build trigger, I am passing values like _DOCKER_IMAGE, _IMAGE_TAG, ...
-1
votes
1
answer
276
views
How to know remote server ip in jenkins pipeline script?
I implemented jenkins build script.
That script started by remote server. ( using Build Triggers )
In build console Output log, wrote down
"Started by remote host xx.xx.xxx.xxx (my ip)"
I ...
0
votes
1
answer
511
views
Azure Devops build pipeline: CI triggers not working on PR merge to a branch when there is no work item is attached with the PR
I need to trigger the pipeline(CI) when any change is made (directly to the branch or by merging a PR) to my_branch, my yml trigger configuration is like this -
trigger:
batch: true
branches:
...
0
votes
0
answers
375
views
Google Cloud Build triggers don't fire when I push my repo
I configured my build triggers to start as soon as I push to the repo on Github. This has always worked well.
Not since yesterday. It didn't work for a long time yesterday. I pushed again for a few ...
9
votes
3
answers
2k
views
Don't trigger builds for branches that already have a pull request in Azure DevOps
We use Azure DevOps for continuous integration. The pipeline is configured to run a build whenever a change is pushed to a feature branch. This is desired for quick feedback.
Additionally, we have the ...
0
votes
1
answer
4k
views
How Schedule Triggers work in Azure Devops?
Quite new to the CI/CD pipelines in AzDO. I was going through some official Azure Pipeline documents where I have some doubts on Schedule Triggers.
Below is a pipeline Snippet in main branch:
...
0
votes
1
answer
868
views
Availability of wildcards in path filters in YAML pipelines
According to a recent update here : https://learn.microsoft.com/en-us/azure/devops/release-notes/2021/sprint-192-update#support-for-wild-cards-in-path-filters wildcards will be supported in path ...
1
vote
0
answers
226
views
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 ...
0
votes
1
answer
558
views
Cloudbuild does not trigger new pod deployment, No resources found in namespace GKE
I've been playing around with GCP Triggers to deploy a new pod every time a push is made to a Github repo. I've got everything set up and the docker image is pushed to the GCP Container Registry and ...