[commit: ghc] wip/jenkins: Use archiveArtifacts instead of archive (b600c2f)

git at git.haskell.org git at git.haskell.org
Thu Jul 27 20:49:03 UTC 2017


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

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

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

commit b600c2fda718949fed2bc144b0b6024014be1e44
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Mon May 29 15:44:56 2017 -0400

    Use archiveArtifacts instead of archive


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

b600c2fda718949fed2bc144b0b6024014be1e44
 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