]> granicus.if.org Git - php/commitdiff
Remove unused Travis configuration for sapi/phpdbg
authorPeter Kokot <peterkokot@gmail.com>
Thu, 5 Oct 2017 14:49:43 +0000 (16:49 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Sun, 8 Oct 2017 12:44:16 +0000 (14:44 +0200)
The phpdbg sapi has been initially developed under the
github.com/krakjoe/krakjoe/phpdbg repository with its own Travis-CI.org
configuration. Since 2017-03-16 the main development is happening in the main
php-src repository.

sapi/phpdbg/.travis.yml [deleted file]
sapi/phpdbg/README.md
sapi/phpdbg/travis/ci.sh [deleted file]

diff --git a/sapi/phpdbg/.travis.yml b/sapi/phpdbg/.travis.yml
deleted file mode 100644 (file)
index 2e777fb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-language: c
-
-env:
-- PHP="PHP-5.4"
-- PHP="PHP-5.5"
-- PHP="PHP-5.6"
-
-before_script: ./travis/ci.sh
-
-script:
-- ./php-src/sapi/cli/php php-src/sapi/phpdbg/tests/run-tests.php -diff2stdout --phpdbg php-src/sapi/phpdbg/phpdbg
index a2a84deb7b12b81564e919934ac9fa7d09d8e3cd..9d1163bc47cac51f9f4d1c9cb60e789e26af18f5 100644 (file)
@@ -5,8 +5,6 @@ Implemented as a SAPI module, phpdbg can exert complete control over the environ
 
 phpdbg aims to be a lightweight, powerful, easy to use debugging platform for PHP 5.4+
 
-[![phpdbg on travis-ci](https://travis-ci.org/krakjoe/phpdbg.png?branch=master)](https://travis-ci.org/krakjoe/phpdbg)
-
 Features
 ========
 
diff --git a/sapi/phpdbg/travis/ci.sh b/sapi/phpdbg/travis/ci.sh
deleted file mode 100755 (executable)
index 206b158..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env sh
-git clone https://github.com/php/php-src
-cd php-src
-git checkout $PHP
-cd sapi
-rm -rf phpdbg
-git clone https://github.com/krakjoe/phpdbg.git
-cd ../
-./buildconf --force
-./configure --disable-all --enable-phpdbg --enable-maintainer-zts
-make