Questions tagged [build-triggers]
52 questions
0
votes
2 answers
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, _BUCKET_NAME etc. to the substitutions values of…

Md. Omar Hasan
- 45
- 5
0
votes
1 answer
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:
include:
- my_branch
paths:
include:
…

hasnayn
- 356
- 4
- 22
0
votes
0 answers
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 hours, then it worked.
I thought it had something…

pat
- 41
- 1
- 3
0
votes
1 answer
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:
schedules:
- cron: "0 0 * * *"
displayName: Daily…

Sandeep Kumar
- 53
- 1
- 4
0
votes
1 answer
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 triggers in 2-3 weeks (Presumably from the date of the…

5NRF
- 401
- 3
- 12
0
votes
1 answer
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 the trigger completes successfully without any…

user782400
- 1,617
- 7
- 30
- 51
0
votes
3 answers
Update build definition using Azure DevOps REST API in PowerShell
I'm attempting to update my build definitions in Azure DevOps using the REST API via a PowerShell script...
$header = @{Authorization = 'Basic ' + [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($personalAccessToken)"))}
$definitions =…

Neo
- 4,145
- 6
- 53
- 76
0
votes
1 answer
Jenkins Build Trigger after each commit to Github
I want to set in Jenkins jobs triggering Build after each commit
I dont have access to Setting in my repository on Github, so I don't have possibility using WebHook.
What is the best/.easy way to set this in other way?
I have jobs for private…

python
- 1
- 3
0
votes
1 answer
How do I schedule jobs in Jenkins on specific time?
For every +61 minute e.g. 00:00, 01:01, 02:02, 03:03 ...

Vladyslav Kuhivchak
- 93
- 1
- 1
- 5
0
votes
1 answer
Google cloud build running into "unsatisfiable constraints" error (image builds locally)
My Dckerfile
FROM python:3.7-alpine
ADD requirements.txt /code/requirements.txt
RUN apk --no-cache add --virtual build-dependencies \
build-base \
py-mysqldb \
gcc \
libc-dev \
libffi-dev \
mariadb-dev \
&& pip install -r…

Prashant
- 1,014
- 11
- 28
0
votes
1 answer
On Jenkins, how do I trigger builds after job succeeds for either 2 jobs but not for both?
Title sounds confusing but here's what I mean.
I have job A, and if it succeeds, it runs job 1, 2, 3, and 4. That's how it's configured in its build trigger.
I have job B, and I want to make it run 1, 2, 3, and 4 also after it succeeds.
BUT, I don't…
0
votes
1 answer
Teamcity build trigger exclude all but some
I'm using teamcity to perform my builds.
within my repository there are multiple projects that uses different folders. e.g. like this:
└root
├project1
│ └files
├project2
│ └files
└project3
└files
I have 3 lanes that should all here…

flor1an
- 960
- 3
- 15
- 33
0
votes
1 answer
How to build a job in jenkins when issue is updated in Jira
We want to make automatic build in Jenkins when issue status is updated in JIRA. Firstly we made Integration between Jira and Jenkins, and we installed the plugin for Jenkins in Jira.
Then we made a configuration for Build trigger in Jenkins - Build…

mjaneva
- 21
- 1
- 3
0
votes
1 answer
Jenkins Build Trigger with Gitlab Webhook
I am able to generate build trigger url and able to call build operation via Gitlab Web hook.
But the build operation is calling in each commit irrespective of any branch. But I want to trigger build operation for a specific branch commit. Means…

Niladri_Android
- 145
- 1
- 12
0
votes
1 answer
Jenkins parameterized pipeline fail
How should pipeline/jenkinsfile syntax look to be triggered by parameterized trigger via curl for example?
I'm having the pipeline that starts with:
pipeline{
parameters {
string(name: 'mycommitid', defaultValue: 'nocommit',…

kol23
- 1,498
- 3
- 16
- 35