.drone.yml 368 B

1234567891011121314151617
  1. image: gcc4.8
  2. script:
  3. - sudo apt-get install -y libmpdclient-dev &> /dev/null
  4. - cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_BUILD_TYPE=Debug
  5. - make VERBOSE=1
  6. notify:
  7. email:
  8. recipients:
  9. - andy@ndyk.de
  10. irc:
  11. server: irc.freenode.org
  12. nick: droneBot
  13. channel: '#nicotest'
  14. on_started: true
  15. on_success: true
  16. on_failure: true