Skip to content

Commit a7c4df8

Browse files
committed
Change Jenkins to use webhooks not polling
1 parent d41a958 commit a7c4df8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ pipeline {
7575
options {
7676
timestamps()
7777
skipDefaultCheckout true
78-
overrideIndexTriggers false
78+
overrideIndexTriggers true
7979
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '7', numToKeepStr: '10')
8080
disableConcurrentBuilds()
8181
}
8282
triggers {
83-
pollSCM('H/2 * * * *')
83+
githubPush()
8484
}
8585
parameters {
8686
booleanParam(name: 'ANDROID_BUILD', defaultValue: true, description: 'Build an Android version')

0 commit comments

Comments
 (0)