Advertisement
Guest User

Untitled

a guest
Jul 1st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. image: ubuntu:xenial
  2.  
  3. pipelines:
  4. branches:
  5. master:
  6. - step:
  7. script:
  8. - apt-get update && apt-get install -y python-software-properties curl
  9. - apt-get update && apt-get install -y php5-cli git zip unzip
  10. - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
  11. - export PHPLOY_PASS=$PASS
  12. - export PHPLOY_USER=$USER
  13. - composer global require "banago/phploy"
  14. - export PATH=$HOME/.composer/vendor/bin:$PATH
  15. - composer install --ignore-platform-reqs --no-dev
  16. - phploy -s master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement