Steve Dower
801f925998
bpo-38089: Move Azure Pipelines to latest VM versions and make macOS tests optional (GH-15851)
2019-09-10 16:53:03 +01:00
Greg Price
9ece4a5057
Unmark files as executable that can't actually be executed. (GH-15353)
...
There are plenty of legitimate scripts in the tree that begin with a
`#!`, but also a few that seem to be marked executable by mistake.
Found them with this command -- it gets executable files known to Git,
filters to the ones that don't start with a `#!`, and then unmarks
them as executable:
$ git ls-files --stage \
| perl -lane 'print $F[3] if (!/^100644/)' \
| while read f; do
head -c2 "$f" | grep -qxF '#!' \
|| chmod a-x "$f"; \
done
Looking at the list by hand confirms that we didn't sweep up any
files that should have the executable bit after all. In particular
* The `.psd` files are images from Photoshop.
* The `.bat` files sure look like things that can be run.
But we have lots of other `.bat` files, and they don't have
this bit set, so it must not be needed for them.
Automerge-Triggered-By: @benjaminp
2019-08-20 21:53:59 -07:00
Steve Dower
3e34a25a7a
bpo-37354: Sign Activate.ps1 for release (GH-15235)
2019-08-12 14:09:36 -07:00
Steve Dower
fe330fc4ad
Fix publishing of Windows release (GH-15006)
2019-07-29 11:22:27 -07:00
Steve Dower
994a3b88dc
Enable publish of Windows releases through Azure Pipelines (GH-14720)
2019-07-13 11:46:16 +02:00
Steve Dower
fe2ad927f4
Improve release build performance using new artifacts tasks (GH-14175)
2019-06-17 15:27:36 -07:00
Julien Palard
7d23dbe6d1
Doc: Bump Sphinx verison. ( #13785 )
...
To reflect the one we're using in production.
2019-06-15 15:41:58 +02:00
Steve Dower
749e73065d
Fix Windows release build issues (GH-14091)
...
* Increase timeout for PGO builds in Windows release
* Fix test step failures
* Disable MinGW step properly
* Fix embeddable distro name
2019-06-14 14:19:25 -07:00
Steve Dower
21a92f8cda
Implement Windows release builds in Azure Pipelines (GH-14065)
2019-06-14 08:29:20 -07:00
Christian Heimes
06651ee418
bpo-37081: Test with OpenSSL 1.1.1c (GH-13631)
...
Signed-off-by: Christian Heimes <christian@python.org>
2019-06-03 20:10:19 +02:00
Paul Monson
fb7e7505ed
bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)
2019-05-15 15:38:55 -07:00
Steve Dower
b4bcefe5fe
Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)
2019-04-01 09:10:20 -07:00
Steve Dower
28f6cb34f6
bpo-35683: Improve Azure Pipelines steps (GH-11493)
2019-01-22 10:49:52 -08:00
antektek
6aedfa6b9a
bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177)
2019-01-10 11:19:29 +11:00
Steve Dower
872bd2b57c
bpo-35596: Use unchecked PYCs for the embeddable distro to avoid zipimport restrictions (GH-11465)
...
Also adds extra steps to the CI build for Windows on Azure Pipelines to validate that the various layouts at least execute.
2019-01-08 02:38:01 -08:00
Pierre Glaser
202d1bde8f
Remove spurious quote in Azure Pipelines script (GH-10763)
2019-01-07 18:02:26 -08:00
Steve Dower
0cd6391fd8
bpo-34977: Add Windows App Store package (GH-11027)
...
Also adds the PC/layout script for generating layouts on Windows.
2018-12-10 18:52:57 -08:00
Victor Stinner
cb0b78a070
Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)
...
This reverts commit 468a15aaf9
.
2018-12-07 12:57:43 +01:00
Steve Dower
468a15aaf9
bpo-34977: Add Windows App Store package (GH-10245)
2018-12-06 21:09:20 -08:00
Julien Palard
7f4ba4afd4
Doc: Bump sphinx. (GH-10676)
2018-11-24 11:35:21 +01:00
Steve Dower
38df97a03c
Add --tempdir option for test run (GH-10322)
2018-11-17 04:14:36 -08:00
Xtreak
121eb1694c
bpo-34081: Fix wrong example link that was linking to distutils (GH-8248)
2018-10-21 16:54:52 +02:00
Steve Dower
4313a293da
bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)
2018-10-05 11:05:47 -07:00
Steve Dower
1b77f929f8
bpo-34582: Fixes Python version used for patch check (GH-9532)
...
https://bugs.python.org/issue34582
2018-09-24 06:03:02 -07:00
Steve Dower
57675090b0
bpo-34582: Update syntax of Azure Pipelines builds (GH-9521)
2018-09-24 07:44:50 -04:00