There are no PHP 8 snapshots anymore

This commit is contained in:
Christoph M. Becker
2021-06-06 17:45:43 +02:00
parent 2af38e65cb
commit 97d9007b41
3 changed files with 2 additions and 58 deletions

View File

@@ -117,32 +117,6 @@ $versions = [
"nts-windows-vc15-x64-avx"
]
],
'php-8.0' => [
"revision_last" => "65d7ade6842bcf06b3d2ed59a796bdd78d073df9",
"revision_previous" => null,
"revision_last_exported" => "65d7ade",
"build_num" => 5,
"builds" => [
"nts-windows-vs16-x64",
"nts-windows-vs16-x86",
"ts-windows-vs16-x86",
"ts-windows-vs16-x64",
"nts-windows-vs16-x64-avx"
]
],
'master' => [
"revision_last" => "65d7ade6842bcf06b3d2ed59a796bdd78d073df9",
"revision_previous" => null,
"revision_last_exported" => "65d7ade",
"build_num" => 5,
"builds" => [
"nts-windows-vs16-x64",
"nts-windows-vs16-x86",
"ts-windows-vs16-x86",
"ts-windows-vs16-x64",
"nts-windows-vs16-x64-avx"
]
],
];
$json = '{"stats":{"warning":0,"error":0},"has_php_pkg":true,"has_debug_pkg":false,"has_devel_pkg":false,"has_test_pkg":false}';
$dir = SNAPS_DIR;

View File

@@ -3,17 +3,9 @@
include __DIR__ . '/../include/config.php';
/* TODO: use exported branches list when available instead */
$active_branches = array('master', '8.0', '7.4', '7.3');
$active_branches = array('7.4', '7.3');
$builds = array(
'master' => array(
'nts-windows-vs16-x64',
'ts-windows-vs16-x64',
'nts-windows-vs16-x86',
'ts-windows-vs16-x86',
'nts-windows-vs16-x86-avx',
'ts-windows-vs16-x86-avx'
),
'7.4' => array(
'nts-windows-vc15-x64',
'ts-windows-vc15-x64',

View File

@@ -1,24 +1,8 @@
<?php
include __DIR__ . '/../include/tools.php';
$major_order = array('8.0', '7.4', '7.3', 'master');
$major_order = array('7.4', '7.3');
$minor_order = array(
'master' => array(
'nts-windows-vs16-x64',
'ts-windows-vs16-x64',
'nts-windows-vs16-x86',
'ts-windows-vs16-x86',
'nts-windows-vs16-x64-avx',
'ts-windows-vs16-x64-avx',
),
'8.0' => array(
'nts-windows-vs16-x64',
'ts-windows-vs16-x64',
'nts-windows-vs16-x86',
'ts-windows-vs16-x86',
'nts-windows-vs16-x64-avx',
'ts-windows-vs16-x64-avx',
),
'7.4' => array(
'nts-windows-vc15-x64',
'ts-windows-vc15-x64',
@@ -44,12 +28,6 @@ $labels = array(
'ts-windows-vc15-x64' => 'VC15 x64 Thread Safe',
'nts-windows-vc15-x64-avx' => 'VC15 x64 AVX Non Thread Safe',
'ts-windows-vc15-x64-avx' => 'VC15 x64 AVX Thread Safe',
'nts-windows-vs16-x86' => 'VS16 x86 Non Thread Safe',
'ts-windows-vs16-x86' => 'VS16 x86 Thread Safe',
'nts-windows-vs16-x64' => 'VS16 x64 Non Thread Safe',
'ts-windows-vs16-x64' => 'VS16 x64 Thread Safe',
'nts-windows-vs16-x64-avx' => 'VS16 x64 AVX Non Thread Safe',
'ts-windows-vs16-x64-avx' => 'VS16 x64 AVX Thread Safe',
);
include TPL_PATH . 'header.php';