Adding Fedora-W64-mingw32 builder

This commit is contained in:
Sergio Durigan Junior 2017-10-09 18:16:57 -04:00
parent b7e9ee2861
commit 731c6b1d6e
2 changed files with 13 additions and 12 deletions

View file

@ -105,6 +105,13 @@
"slavenames" : [ "fedora-x86-64-1", "fedora-x86-64-2",
"fedora-x86-64-3", "fedora-x86-64-4" ] },
{ "name" : "Fedora-x86_64-w64-mingw32",
"type" : "PlainFedoraW64MingW32_c64notest",
"PATH" : "/usr/local/bin:/usr/bin:/bin",
"tags" : [ "fedora", "x86_64", "mingw32", "MAIL" ],
"builddir" : "fedora-x86-64-mingw32",
"slavenames" : [ "fedora-x86-64-1", "fedora-x86-64-2",
"fedora-x86-64-3", "fedora-x86-64-4" ] },
@ -263,6 +270,7 @@
"Fedora-x86_64-native-extended-gdbserver-m32",
"Fedora-x86_64-cc-with-index",
"Fedora-i686",
"Fedora-x86_64-w64-mingw32",
"Debian-s390x-m64",
"Debian-s390x-native-gdbserver-m64",
@ -363,6 +371,7 @@
"Fedora-x86_64-native-extended-gdbserver-m32",
"Fedora-x86_64-cc-with-index",
"Fedora-i686",
"Fedora-x86_64-w64-mingw32",
"Fedora-s390x-m64",
"Debian-s390x-m64",
"Debian-s390x-native-gdbserver-m64",

View file

@ -1182,19 +1182,11 @@ class RunTestGDBIndexBuild_c32t32 (BuildAndTestGDBFactory):
# Class for only building GDB, without testing
class RunTestGDBPlainBuildWithCxx_c64notest (BuildAndTestGDBFactory):
"""Compiling for 64-bit with --enable-build-with-cxx. We do not test
anything for now."""
class RunTestGDBPlainFedoraW64MingW32_c64notest (BuildAndTestGDBFactory):
"""Compiling on Fedora for 64-bit using MingW32, without tests."""
def __init__ (self, **kwargs):
self.extra_conf_flags = [ '--enable-build-with-cxx' ]
self.run_testsuite = False
BuildAndTestGDBFactory.__init__ (self, **kwargs)
class RunTestGDBPlainBuildWithC_c64notest (BuildAndTestGDBFactory):
"""Compiling for 64-bit with --enable-build-with-cxx=no. We do not test
anything for now."""
def __init__ (self, **kwargs):
self.extra_conf_flags = [ '--enable-build-with-cxx=no' ]
self.extra_conf_flags = [ '--host=x86_64-w64-mingw32',
'--target=x86_64-w64-mingw32' ]
self.run_testsuite = False
BuildAndTestGDBFactory.__init__ (self, **kwargs)