ci.sh 256 B

1234567891011
  1. #!/usr/bin/env sh
  2. git clone https://github.com/php/php-src
  3. cd php-src
  4. git checkout $PHP
  5. cd sapi
  6. rm -rf phpdbg
  7. git clone https://github.com/krakjoe/phpdbg.git
  8. cd ../
  9. ./buildconf --force
  10. ./configure --disable-all --enable-phpdbg --enable-maintainer-zts
  11. make