[commit: ghc] wip/jenkins: Run jobs in parallel (d55eb06)

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


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

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

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

commit d55eb068a134413e56d5359b5efd3d2eaa001463
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Wed May 17 23:34:37 2017 -0400

    Run jobs in parallel


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

d55eb068a134413e56d5359b5efd3d2eaa001463
 Jenkinsfile | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index eada3d5..f9debf5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,19 +11,23 @@ properties(
       ])
   ])
 
-//node { buildGhc(runNofib: params.runNofib) }
-node(label: 'linux && amd64') {
-  buildGhc(false)
-}
-node(label: 'aarch64') {
-  buildGhc(false)
-}
+parallel (
+  "linux x86-64" : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
+  "aarch64"      : {node(label: 'aarch64') {buildGhc(false)}},
+  "osx"          : {node(label: 'darwin') {buildGhc(false)}}
+)
 
-def installPackages(pkgs) {
+def installPackages(String[] pkgs) {
   sh "cabal install -j${env.THREADS} --with-compiler=`pwd`/inplace/bin/ghc-stage2 --package-db=`pwd`/inplace/lib/package.conf.d ${pkgs.join(' ')}"
 }
 
-def buildGhc(runNofib) {
+def buildGhc(boolean runNofib) {
+  stage('Clean') {
+    if (false) {
+      sh 'make distclean'
+    }
+  }
+
   stage('Build') {
     sh 'git submodule update --init --recursive'
     def speed = 'NORMAL'



More information about the ghc-commits mailing list