forked from php/web-qa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (40 loc) · 1.56 KB
/
index.php
File metadata and controls
49 lines (40 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
include("include/functions.php");
include("include/release-qa.php");
$SITE_UPDATE = date("D M d H:i:s Y T", filectime(__FILE__))."<br />\n".
'/* $Id$ */';
common_header();
?>
<h1>Welcome to the PHP Quality Assurance Team Web Page.</h1>
<p>
The PHP Quality Assurance Team supports the PHP Development Team by
providing them with information on compatibility and stability issues.
</p>
<h3>Make test results:</h3>
<ul>
<li>
All users who compile PHP are encouraged to run '<a href="/running-tests.php">make test</a>', which
runs the test suite and optionally sends the <a href=" http://news.php.net/php.qa.reports">results here</a>.
</li>
<li>
Compiled <a href="reports/">user submitted test result reports</a> for analysis
<br /><br />
</li>
<li>
Additional test results are available at <a href="http://gcov.php.net/">gcov.php.net</a> and <a href="http://ci.qa.php.net">ci.qa.php.net</a>.
</li>
</ul>
<h3>The team is currently focused on:</h3>
<ul>
<li>
<?php show_release_qa($QA_RELEASES); ?>
See <a href="http://windows.php.net/qa/">here</a> for the Windows builds.
</li>
</ul>
<p>
If you would like to contribute to these efforts, please
visit our <a href="howtohelp.php">How To Help</a> page.
</p>
<?php
common_footer();
?>