Skip to content

Commit 1afa908

Browse files
don't poll or include changelog for release branches (#305)
Don't poll or include changelist for the static tags which are checked out (llvmorg-17.0.6, llvmorg-15.0.1). This should hopefully reduce the changeless to just those on the main branch
1 parent 714a5f1 commit 1afa908

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

zorg/jenkins/jobs/jobs/lldb-cmake-matrix

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,10 @@ pipeline {
211211
], extensions: [
212212
[$class: 'CloneOption', timeout: 30,
213213
timeout: 30]
214-
]])
214+
],
215+
changelog: false,
216+
poll: false
217+
])
215218
}
216219
}
217220
timeout(90) {
@@ -276,7 +279,10 @@ pipeline {
276279
], extensions: [
277280
[$class: 'CloneOption', timeout: 30,
278281
timeout: 30]
279-
]])
282+
],
283+
changelog: false,
284+
poll: false
285+
])
280286
}
281287
}
282288
timeout(90) {

0 commit comments

Comments
 (0)