[commit: ghc] wip/jenkins: Use archiveArtifacts instead of archive (98dd17b)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:24:57 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/98dd17bd42a26f98fe6721093dda551f0d7caa35/ghc
>---------------------------------------------------------------
commit 98dd17bd42a26f98fe6721093dda551f0d7caa35
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 15:44:56 2017 -0400
Use archiveArtifacts instead of archive
>---------------------------------------------------------------
98dd17bd42a26f98fe6721093dda551f0d7caa35
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