Commit: c054a351c8cc929d504ab239a554e02de30a5f6f Author: Anatol Belski <[email protected]> Fri, 9 Jun 2017 08:33:26 +0200 Parents: 47580066f6ba2b0feb1e5aee62935b0da776e64f Branches: master
Link: http://git.php.net/?p=web/windows.git;a=commitdiff;h=c054a351c8cc929d504ab239a554e02de30a5f6f Log: yet more fixes for 7.2 Changed paths: M docroot/listing.php M script/generate_snap_page.php M templates/snaps.php Diff: diff --git a/docroot/listing.php b/docroot/listing.php index db2c62c..bb19570 100644 --- a/docroot/listing.php +++ b/docroot/listing.php @@ -74,6 +74,10 @@ $labels = array( 'ts-VC14-x86' => 'VC14 x86 Thread Safe', 'nts-VC14-x64' => 'VC14 x64 Non Thread Safe', 'ts-VC14-x64' => 'VC14 x64 Thread Safe', + 'nts-VC15-x86' => 'VC15 x86 Non Thread Safe', + 'ts-VC15-x86' => 'VC15 x86 Thread Safe', + 'nts-VC15-x64' => 'VC15 x64 Non Thread Safe', + 'ts-VC15-x64' => 'VC15 x64 Thread Safe', ); if ($mode == 'snapshots') { diff --git a/script/generate_snap_page.php b/script/generate_snap_page.php index bf13c85..103cefc 100644 --- a/script/generate_snap_page.php +++ b/script/generate_snap_page.php @@ -3,7 +3,7 @@ include __DIR__ . '/../include/config.php'; /* TODO: use exported branches list when available instead */ -$active_branches = array('master', '7.1', '7.0', '5.6'); +$active_branches = array('master', '7.2', '7.1', '7.0', '5.6'); $builds = array( 'master' => array( @@ -11,7 +11,13 @@ $builds = array( 'ts-windows-vc15-x64', 'nts-windows-vc15-x86', 'ts-windows-vc15-x86' - ), + ), + '7.2' => array( + 'nts-windows-vc15-x64', + 'ts-windows-vc15-x64', + 'nts-windows-vc15-x86', + 'ts-windows-vc15-x86' + ), '7.1' => array( 'nts-windows-vc14-x64', 'ts-windows-vc14-x64', diff --git a/templates/snaps.php b/templates/snaps.php index e026157..4e9facf 100644 --- a/templates/snaps.php +++ b/templates/snaps.php @@ -1,14 +1,20 @@ <?php include __DIR__ . '/../include/tools.php'; -$major_order = array('7.1', '7.0', '5.6', 'master'); +$major_order = array('7.2', '7.1', '7.0', '5.6', 'master'); $minor_order = array( 'master' => array( 'nts-windows-vc15-x64', 'ts-windows-vc15-x64', 'nts-windows-vc15-x86', 'ts-windows-vc15-x86' - ), + ), + '7.2' => array( + 'nts-windows-vc15-x64', + 'ts-windows-vc15-x64', + 'nts-windows-vc15-x86', + 'ts-windows-vc15-x86' + ), '7.1' => array( 'nts-windows-vc14-x64', 'ts-windows-vc14-x64', -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
