[commit: ghc] wip/jenkins: Try again (0490128)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:25:16 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/0490128f16ee340b708f9924a056af8f8e75d0cf/ghc
>---------------------------------------------------------------
commit 0490128f16ee340b708f9924a056af8f8e75d0cf
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 16:42:42 2017 -0400
Try again
>---------------------------------------------------------------
0490128f16ee340b708f9924a056af8f8e75d0cf
Jenkinsfile | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index eac4b79..69960f2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,11 +32,14 @@ parallel (
// Requires cygpath plugin?
// Make
"windows 64" : {
- environment {
- MSYSTEM=MINGW32
- PATH = 'C:\\msys64\\mingw32\\bin:C:\\msys64\\home\\ben\\ghc-8.0.2-i386\\bin:$PATH'
- }
- node(label: 'windows && amd64') {buildGhc(runNoFib: false)}
+ node(label: 'windows && amd64') {
+ sh """
+ export MSYSTEM=MINGW32
+ # PATH = 'C:\\msys64\\mingw32\\bin:C:\\msys64\\home\\ben\\ghc-8.0.2-i386\\bin:$PATH'
+ source /etc/profile
+ """
+ buildGhc(runNoFib: false)
+ }
},
"windows 32" : {
node(label: 'windows && amd64') {
More information about the ghc-commits
mailing list