On 04/30/12 13:44, Matthias Melcher wrote:
> Oh! Not good! It seems that there is still an issue with returning a failed
> build on multiple platforms. That really defeats the purpose...
Maybe you missed my follow up last week which I think might fix it:
* * *
> It's currently:
> C:\MinGW\msys\1.0\bin\sh.exe --login -c "( cd
> /c/jenkins/workspace/FLTK_1.3_MSVista_MinGW && date && gcc --version &&
> autoconf && ./configure && make && date ) || set ERRORLEVEL=1"
Hmm, I'd suggest '|| set ERRORLEVEL=1' inside the quotes
is the problem; inside the quotes it's being parsed by sh(1)
(and therefore ignored).
I could see a few ways to fix it, the easiest being to just
change the '|| set ERRORLEVEL=1' to instead '|| exit 1', ie:
C:\MinGW\msys\1.0\bin\sh.exe --login -c "( cd
/c/jenkins/workspace/FLTK_1.3_MSVista_MinGW && date && gcc --version &&
autoconf && ./configure && make && date ) || exit 1"
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev