[commit: ghc] wip/jenkins: Fix Windows PATHs (9e7a054)
git at git.haskell.org
git at git.haskell.org
Sat Jun 17 13:50:49 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/9e7a054ed827b41b714c470bf0473e2b04a1fcd9/ghc
>---------------------------------------------------------------
commit 9e7a054ed827b41b714c470bf0473e2b04a1fcd9
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 16:31:28 2017 -0400
Fix Windows PATHs
>---------------------------------------------------------------
9e7a054ed827b41b714c470bf0473e2b04a1fcd9
Jenkinsfile | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 84c175e..10d2280 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,12 +30,17 @@ 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)}
},
"windows 32" : {
node(label: 'windows && amd64') {
environment {
- PATH = 'C:\\msys64\\mingw32\\bin:C:\\msys64\\home\\ben\\ghc-8.0.2-i386:$PATH'
+ MSYSTEM=MINGW64
+ PATH = 'C:\\msys64\\mingw32\\bin:C:\\msys64\\home\\ben\\ghc-8.0.2-i386\\bin:$PATH'
}
buildGhc(runNoFib: false)
}
More information about the ghc-commits
mailing list