Adding Fedora-W64-mingw32 builder
This commit is contained in:
parent
b7e9ee2861
commit
731c6b1d6e
2 changed files with 13 additions and 12 deletions
|
@ -105,6 +105,13 @@
|
||||||
"slavenames" : [ "fedora-x86-64-1", "fedora-x86-64-2",
|
"slavenames" : [ "fedora-x86-64-1", "fedora-x86-64-2",
|
||||||
"fedora-x86-64-3", "fedora-x86-64-4" ] },
|
"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-native-extended-gdbserver-m32",
|
||||||
"Fedora-x86_64-cc-with-index",
|
"Fedora-x86_64-cc-with-index",
|
||||||
"Fedora-i686",
|
"Fedora-i686",
|
||||||
|
"Fedora-x86_64-w64-mingw32",
|
||||||
|
|
||||||
"Debian-s390x-m64",
|
"Debian-s390x-m64",
|
||||||
"Debian-s390x-native-gdbserver-m64",
|
"Debian-s390x-native-gdbserver-m64",
|
||||||
|
@ -363,6 +371,7 @@
|
||||||
"Fedora-x86_64-native-extended-gdbserver-m32",
|
"Fedora-x86_64-native-extended-gdbserver-m32",
|
||||||
"Fedora-x86_64-cc-with-index",
|
"Fedora-x86_64-cc-with-index",
|
||||||
"Fedora-i686",
|
"Fedora-i686",
|
||||||
|
"Fedora-x86_64-w64-mingw32",
|
||||||
"Fedora-s390x-m64",
|
"Fedora-s390x-m64",
|
||||||
"Debian-s390x-m64",
|
"Debian-s390x-m64",
|
||||||
"Debian-s390x-native-gdbserver-m64",
|
"Debian-s390x-native-gdbserver-m64",
|
||||||
|
|
16
master.cfg
16
master.cfg
|
@ -1182,19 +1182,11 @@ class RunTestGDBIndexBuild_c32t32 (BuildAndTestGDBFactory):
|
||||||
|
|
||||||
# Class for only building GDB, without testing
|
# Class for only building GDB, without testing
|
||||||
|
|
||||||
class RunTestGDBPlainBuildWithCxx_c64notest (BuildAndTestGDBFactory):
|
class RunTestGDBPlainFedoraW64MingW32_c64notest (BuildAndTestGDBFactory):
|
||||||
"""Compiling for 64-bit with --enable-build-with-cxx. We do not test
|
"""Compiling on Fedora for 64-bit using MingW32, without tests."""
|
||||||
anything for now."""
|
|
||||||
def __init__ (self, **kwargs):
|
def __init__ (self, **kwargs):
|
||||||
self.extra_conf_flags = [ '--enable-build-with-cxx' ]
|
self.extra_conf_flags = [ '--host=x86_64-w64-mingw32',
|
||||||
self.run_testsuite = False
|
'--target=x86_64-w64-mingw32' ]
|
||||||
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.run_testsuite = False
|
self.run_testsuite = False
|
||||||
BuildAndTestGDBFactory.__init__ (self, **kwargs)
|
BuildAndTestGDBFactory.__init__ (self, **kwargs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue