[commit: ghc] wip/jenkins: Nailed the Windows issue (ba8a4c5)
git at git.haskell.org
git at git.haskell.org
Thu Jul 27 20:48:55 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/ba8a4c51b2050b8050306bb58552e41389ffc3f5/ghc
>---------------------------------------------------------------
commit ba8a4c51b2050b8050306bb58552e41389ffc3f5
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 12:48:34 2017 -0400
Nailed the Windows issue
>---------------------------------------------------------------
ba8a4c51b2050b8050306bb58552e41389ffc3f5
Jenkinsfile | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 0bd3c7b..20dbec0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -24,6 +24,9 @@ parallel (
"aarch64" : {
node(label: 'linux && aarch64') {buildGhc(runNoFib: false)}
},
+ "freebsd" : {
+ node(label: 'freebsd && aarch64') {buildGhc(runNoFib: false)}
+ },
// Requires cygpath plugin?
// Make
"windows 64" : {
@@ -47,14 +50,10 @@ def buildGhc(params) {
stage('Checkout') {
checkout scm
- if (msys) {
- bat "git submodule update --init --recursive"
- } else {
- sh "git submodule update --init --recursive"
- }
+ sh "git submodule update --init --recursive"
}
- stage('Build') {
+ stage('Configure') {
def speed = 'NORMAL'
if (params.nightly) {
speed = 'SLOW'
@@ -87,10 +86,15 @@ def buildGhc(params) {
sh """
./boot
./configure ${configure_opts}
- make -j${env.THREADS}
"""
}
+ stage('Build') {
+ sh "make -j${env.THREADS}"
+ }
+}
+
+def testGhc() {
stage('Install testsuite dependencies') {
if (params.nightly && !crossTarget) {
def pkgs = ['mtl', 'parallel', 'parsec', 'primitive', 'QuickCheck',
More information about the ghc-commits
mailing list