.drone.yml 516 B

1234567891011
  1. pipeline:
  2. build:
  3. image: debian:8.0
  4. commands:
  5. - echo 'Acquire::http { Proxy "http://200.50.168.30:3142"; };' > /etc/apt/apt.conf.d/01proxy
  6. - apt-get update && apt-get install -yq build-essential git unzip php5-cli php5-mysql wget mysql-client php5-curl
  7. - php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
  8. - php composer-setup.php --install-dir=/usr/local/bin/ --filename=composer
  9. - php -r "unlink('composer-setup.php');"
  10. - composer install