[commit: ghc] wip/jenkins: Run jobs in parallel (8824574)
git at git.haskell.org
git at git.haskell.org
Sun Jun 4 05:08:06 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/8824574d55a7f8633da9270f0bcf1409dc6bda07/ghc
>---------------------------------------------------------------
commit 8824574d55a7f8633da9270f0bcf1409dc6bda07
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed May 17 23:34:37 2017 -0400
Run jobs in parallel
>---------------------------------------------------------------
8824574d55a7f8633da9270f0bcf1409dc6bda07
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