[commit: ghc] wip/jenkins: Use named argument list (283d4fc)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:25:49 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/283d4fc2a6b1f16d158a828a4d0432445af18f03/ghc
>---------------------------------------------------------------
commit 283d4fc2a6b1f16d158a828a4d0432445af18f03
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon Jun 5 13:27:27 2017 -0400
Use named argument list
>---------------------------------------------------------------
283d4fc2a6b1f16d158a828a4d0432445af18f03
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