[commit: ghc] wip/jenkins: Use archiveArtifacts instead of archive (2f5a7d4)
git at git.haskell.org
git at git.haskell.org
Mon May 29 19:49:56 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/2f5a7d494fb4e3c648e96f2e0da1f6fab95ced08/ghc
>---------------------------------------------------------------
commit 2f5a7d494fb4e3c648e96f2e0da1f6fab95ced08
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 15:44:56 2017 -0400
Use archiveArtifacts instead of archive
>---------------------------------------------------------------
2f5a7d494fb4e3c648e96f2e0da1f6fab95ced08
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 8ec33cd..8a621a8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -133,14 +133,14 @@ def testGhc(params) {
${makeCmd} boot
${makeCmd} >../nofib.log 2>&1
"""
- archive 'nofib.log'
+ archiveArtifacts 'nofib.log'
}
}
stage('Prepare bindist') {
if (params.buildBindist) {
- archive 'ghc-*.tar.xz'
sh "${makeCmd} binary-dist"
+ archiveArtifacts 'ghc-*.tar.xz'
}
}
}
More information about the ghc-commits
mailing list