Steve Dower
3cc6da2b07
Removes deprecated -n option from buildbot script.
11 years ago
Zachary Ware
e74fe18ebb
Allow PCbuild\rt.bat to accept unlimited arguments for regrtest.
This makes it possible to pass more than 4 tests by name through
Tools\buildbot\test.bat
11 years ago
Steve Dower
807404921a
Removes --clean-only option from buildbots.
11 years ago
Steve Dower
e7e69391e3
Issue #24847 : Fixes Tix revision number and reverts fix for the wrong revision.
Triggers clean on buildbots.
11 years ago
Zachary Ware
9fe164364a
Deprecate unused scripts in Tools/buildbot.
I would just outright delete them, but the readme in PCbuild recommended
their use, so I figure it would be nice to leave them there for a while.
11 years ago
Zachary Ware
6250df81bf
Clean up/refactor the batch scripts used for building on Windows.
This is mostly a backport of issue #21907 , but also includes a few
extras necessary to make the bulidbot scripts as thin as possible.
11 years ago
Zachary Ware
7dc9dea778
Issue #20035 : Reimplement tkinter._fix module as a C function.
The new private C function makes no permanent changes to the environment
and is #ifdef'd out on non-Windows platforms.
11 years ago
Steve Dower
3c28c6e4fb
Backed out buildbot clean
11 years ago
Steve Dower
4ac54bb820
Force the buildbots to clean up all externals.
11 years ago
Zachary Ware
4c9c848159
Issue #17202 : Add .bat to .hgeol to force them to CRLF.
Using LF can a script to fail if it tries to use a label that is
split across 512 byte blocks. Who knows why.
11 years ago
Zachary Ware
89c057a263
Backed out changeset bc41a4d6c58f after buildbots have new OpenSSL source.
11 years ago
Zachary Ware
5065792c1e
Refresh OpenSSL sources on the buildbots
11 years ago
Zachary Ware
9f3109c459
Issue #23686 : Update Windows build to use OpenSSL 1.0.2a.
11 years ago
Steve Dower
bb24087a2c
Issue #23260 : Update Windows installer
12 years ago
Steve Dower
6b8997391b
Issue #23212 : Update Windows copy of OpenSSL to 1.0.1l
12 years ago
Steve Dower
cbd3bd59c0
Closes #23160 : Respect the environment variable SVNROOT in external-common.bat (patch by anselm.kruis)
12 years ago
Zachary Ware
494b09ca5f
Backed out changeset ceaac3d483a1 (buildbots refreshed)
12 years ago
Zachary Ware
d0b07d5d5e
Fetch new external sources on the buildbots
12 years ago
Steve Dower
10e65856a3
Removes use of ValueOrDefault function that is not always available on the buildbots.
12 years ago
Steve Dower
65e4cb10d9
Issue #22919 : Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release.
12 years ago
Zachary Ware
4b2b1de0bd
Issue #17896 : Move Windows external lib sources from .. to externals.
12 years ago
Zachary Ware
aa3ea7ee78
Issue #17717 : Pull NASM from svn.python.org for OpenSSL build.
12 years ago
Zachary Ware
77770bdaa8
Turn externals cleaning back off
12 years ago
Zachary Ware
baa6d3a01f
Issue #22644 : Update the Windows build to OpenSSL 1.0.1j
12 years ago
Zachary Ware
6f3bdc9484
Issue #21907 : Partially revert changes to Windows buildbot scripts.
Trying to use run_tests.py for testing is more trouble than it's
worth; reverted to rt.bat. Also cleaned up rt.bat a bit.
Trying to use hg purge to clean up after testing is also
error-prone, so we're back to using the build solution's Clean
targets.
12 years ago
Zachary Ware
86a89f02e2
Issue #21907 : Try to make the pre-Vista Windows buildbots happier.
Initial patch by David Bolen.
12 years ago
Zachary Ware
22f2d2efb7
Issue #22160 : Update OpenSSL to 1.0.1i for the Windows build.
12 years ago
Zachary Ware
afb52e1d44
Issue #21907 : Make the buildbot clean script always return 0.
The clean script is a "best effort" thing anyway, and this will hopefully
revive the XP buildbot.
12 years ago
Zachary Ware
e12fa65744
Issue #21907 : Improved the batch scripts provided for building Python.
The user-facing scripts in PCbuild have been updated to be easier to use
and the buildbot scripts in Tools\buildbot have been updated to use the
user-facing scripts in PCbuild wherever possible.
12 years ago
Zachary Ware
9789185e36
Issue #21683 : Add Tix build to the Windows buildbot scripts.
12 years ago
Zachary Ware
7d55da42a4
Issue #21671 , CVE-2014-0224: Update the Windows build to openssl-1.0.1h
12 years ago
Zachary Ware
60cc211cde
Revert Tools/buildbot/external-common.bat to normal (with updated versions).
12 years ago
Zachary Ware
6d602c0ee9
Force a clean pull-and-build of Tcl/Tk on Windows buildbots.
12 years ago
Zachary Ware
4a01fd2d65
Clean up Tcl/Tk building in the Windows buildbot scripts.
- Nix the 'noxp' option, it was for Win2k compatibility (which was dropped
with Python 3.3) and made default ttk ugly on post-Win2k systems (#21665 )
- Use 'OPTS=symbols' instead of 'DEBUG=1'; symbols is the official method
- Use core, shell, dlls, install-binaries, and install-libraries targets
instead of all and install to avoid trying to 1) build packages that don't
work with MSVC 10+ and 2) install unnecessary bits and pieces.
12 years ago
Martin v. Löwis
3d5c9e2c67
Update to 1.0.1g
12 years ago
Zachary Ware
800cae3007
Issue #21059 : Temporary measure to make the Windows buildbots useful again.
Hopefully.
12 years ago
Zachary Ware
92497a42b7
Issue #21017 : Enable Tix debug build on Windows
12 years ago
Zachary Ware
a191b91a43
Issue #15968 : Incorporated Tcl, Tk, and Tix builds into the Windows build
solution.
Currently, Tix is not built in Debug configuration.
This change also:
- simplifies some Tcl/Tk-related msbuild properties for _tkinter
- copies the Tcl and Tk DLLs into the build output directory, meaning
they will always be available after a build without having to copy
them manually or change PATH
- removes PCbuild/build_tkinter.py: the solution does the build without
needing to invoke Python (so Tcl/Tk/Tix can be built in parallel with
the rest of the build using the `/m` msbuild command line switch)
- removes an outdated README concerning building Tcl/Tk on AMD64
12 years ago
Martin v. Löwis
a663069b5c
Issue #20465 : Update Windows installer to SQLite 3.8.3.1.
12 years ago
Martin v. Löwis
09257f7ced
Issue #20465 : Update Windows installer to SQLite 3.8.3.1.
12 years ago
Victor Stinner
e8ebe152de
Windows buildbot: use --timeout feature in Tools/buildbot/test-amd64.bat
Use the same default timeout than test.bat: 1 hour (3600 seconds).
12 years ago
Victor Stinner
20b017ef9e
Windows buildbot: use --timeout feature in Tools/buildbot/test.bat
Use the same default timeout than Makefile: 1 hour (3600 seconds).
13 years ago
Zachary Ware
bb65b5bf1d
Issue #19788 : kill_python(_d).exe is now run as a PreBuildEvent on the
pythoncore sub-project. This should prevent build errors due a previous
build's python(_d).exe still running.
13 years ago
Martin v. Löwis
8d0d369067
Update Tcl/Tk to 8.6.1.
13 years ago
Martin v. Löwis
baacf4d293
Update xz to 5.0.5.
13 years ago
Martin v. Löwis
bc2f0ba6b8
Update SQLite to 3.8.1 on Windows.
13 years ago
Georg Brandl
84fc4ba67e
Closes #17962 : Build with OpenSSL 1.0.1e on Windows.
13 years ago
Martin v. Löwis
cc0b927b74
Issue #17425 : Build with openssl 1.0.1d on Windows.
13 years ago
Martin v. Loewis
5be6d74a0d
Issue #17425 : Build with openssl 1.0.0k on Windows.
13 years ago
Martin v. Loewis
18613e6e7b
Issue #17425 : Build against openssl 0.9.8y on Windows.
13 years ago