[commit: ghc] wip/jenkins: Use named argument list (53fe1e5)

git at git.haskell.org git at git.haskell.org
Fri Jul 28 16:45:14 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/jenkins
Link       : http://ghc.haskell.org/trac/ghc/changeset/53fe1e570be92e9f1eed03d7dd876a0193626e0c/ghc

>---------------------------------------------------------------

commit 53fe1e570be92e9f1eed03d7dd876a0193626e0c
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Mon Jun 5 13:27:27 2017 -0400

    Use named argument list


>---------------------------------------------------------------

53fe1e570be92e9f1eed03d7dd876a0193626e0c
 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