We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aeb7e5 commit 425e450Copy full SHA for 425e450
Jenkinsfile
@@ -80,6 +80,16 @@ String test_branch(String target) {
80
'-' + target.replaceAll('/', '-')
81
}
82
83
+def artifacts_selector() {
84
+ String pragma_val = cachedCommitPragma('libfabric-artifacts-selector', null)
85
+
86
+ if (pragma_val) {
87
+ return specific(pragma_val)
88
+ }
89
90
+ return lastSuccessful()
91
+}
92
93
/* groovylint-disable-next-line CompileStatic */
94
pipeline {
95
agent { label 'lightweight' }
@@ -222,6 +232,7 @@ pipeline {
222
232
steps {
223
233
// Populate an artifact directory
224
234
copyArtifacts projectName: '/daos-stack/libfabric/master',
235
+ selector: artifacts_selector(),
225
236
filter: 'artifacts/el8/**',
226
237
target: 'artifact'
227
238
publishToRepository(
0 commit comments