[commit: ghc] wip/jenkins: Use named argument list (99d5b24)
git at git.haskell.org
git at git.haskell.org
Sat Jun 17 13:52:05 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/99d5b24f79f17e3ac757ababca46a537d2dfc4e9/ghc
>---------------------------------------------------------------
commit 99d5b24f79f17e3ac757ababca46a537d2dfc4e9
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon Jun 5 13:27:27 2017 -0400
Use named argument list
>---------------------------------------------------------------
99d5b24f79f17e3ac757ababca46a537d2dfc4e9
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 7abcc9d..6fc89ae 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -193,7 +193,7 @@ def buildGhc(params) {
writeJSON(file: 'bindist.json', json: json)
// Write a file so we can easily file the tarball and bindist directory later
stash(name: "bindist-${targetTriple}", includes: "bindist.json,${tarName}")
- archiveArtifacts "${tarName}"
+ archiveArtifacts artifacts: tarName
}
}
}
@@ -286,7 +286,7 @@ def testGhc(params) {
${makeCmd} boot
${makeCmd} >../nofib.log 2>&1
"""
- archiveArtifacts 'nofib.log'
+ archiveArtifacts artifacts: 'nofib.log'
}
}
}
More information about the ghc-commits
mailing list