forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PHP-5.5: add initial install switch to C travis project instead of PHP use the generic TRAVIS environment var to check for travis (see http://docs.travis-ci.com/user/ci-environment/)
- Loading branch information
Showing
3 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,7 +314,7 @@ function write_information($show_html) | |
define('PHP_QA_EMAIL', '[email protected]'); | ||
define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php'); | ||
define('QA_REPORTS_PAGE', 'http://qa.php.net/reports'); | ||
define('TRAVIS_CI' , (bool) getenv('TRAVIS_PHP_VERSION')); | ||
define('TRAVIS_CI' , (bool) getenv('TRAVIS')); | ||
|
||
function save_or_mail_results() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
sudo apt-get install re2c libgmp-dev libicu-dev libmcrypt-dev libtidy-dev |