[commit: ghc] wip/jenkins: Add nofib, bindist, and aarch64 support (fae8b07)

git at git.haskell.org git at git.haskell.org
Thu May 18 02:48:28 UTC 2017


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

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

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

commit fae8b076d1c8fe46684f5b5afde91d10766074d6
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Wed May 17 22:41:02 2017 -0400

    Add nofib, bindist, and aarch64 support


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

fae8b076d1c8fe46684f5b5afde91d10766074d6
 Jenkinsfile | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index ee92071..f1837fb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,7 +5,9 @@ properties(
     parameters(
       [
         booleanParam(name: 'build_docs', defaultValue: false, description: 'build and upload documentation'),
-        booleanParam(name: 'nightly', defaultValue: false, description: 'are we building a nightly?')
+        booleanParam(name: 'nightly', defaultValue: false, description: 'are we building a nightly?'),
+        booleanParam(name: 'buildBindist', defaultValue: false, description: 'prepare and archive a binary distribution?'),
+        booleanParam(name: 'runNofib', defaultValue: false, description: 'run nofib and archive results')
       ])
   ])
 
@@ -40,15 +42,32 @@ def buildGhc() {
     }
   }
 
-  stage('Normal testsuite run') {
+  stage('Run testsuite') {
     def target = 'test'
     if (params.nightly) {
       target = 'slowtest'
     }
     sh "make THREADS=${env.THREADS} ${target}"
   }
-}
 
-node {
-  buildGhc()
+  stage('Run nofib') {
+    if (runNofib) {
+      sh """
+         cd nofib
+         make boot
+         make >../nofib.log 2>&1
+         """
+      archive 'nofib.log'
+    }
+  }
+
+  stage('Prepare bindist') {
+    if (params.buildBindist) {
+      sh "make binary-dist"
+      archive 'ghc-*.tar.xz'
+    }
+  }
 }
+
+///node { buildGhc(runNofib: params.runNofib) }
+node(label: 'aarch64') { buildGhc() }



More information about the ghc-commits mailing list