[commit: ghc] wip/jenkins: Use archiveArtifacts instead of archive (67f51b5)
git at git.haskell.org
git at git.haskell.org
Fri Jul 28 16:42:05 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/67f51b5831bc8b3d7a3c66de160f811ac70dc3f4/ghc
>---------------------------------------------------------------
commit 67f51b5831bc8b3d7a3c66de160f811ac70dc3f4
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 15:44:56 2017 -0400
Use archiveArtifacts instead of archive
>---------------------------------------------------------------
67f51b5831bc8b3d7a3c66de160f811ac70dc3f4
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