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

git at git.haskell.org git at git.haskell.org
Thu May 18 02:41:19 UTC 2017


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

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

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

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

    Add nofib, bindist, and aarch64 support


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

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

diff --git a/Jenkinsfile b/Jenkinsfile
index ee92071..0fe0185 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -6,10 +6,12 @@ properties(
       [
         booleanParam(name: 'build_docs', defaultValue: false, description: 'build and upload documentation'),
         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')
       ])
   ])
 
-def buildGhc() {
+def buildGhc(boolean runNofib=false) {
   stage('Build') {
     sh 'git submodule update --init --recursive'
     def speed = 'NORMAL'
@@ -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