[commit: ghc] wip/jenkins: Use archiveArtifacts instead of archive (d6e5547)
git at git.haskell.org
git at git.haskell.org
Sat Jun 17 13:51:21 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/d6e5547daf6202dd54d4dfcd765a784c3010305b/ghc
>---------------------------------------------------------------
commit d6e5547daf6202dd54d4dfcd765a784c3010305b
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 15:44:56 2017 -0400
Use archiveArtifacts instead of archive
>---------------------------------------------------------------
d6e5547daf6202dd54d4dfcd765a784c3010305b
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