Kromek Radangel gamma spectrometer USB HID daemon and WebUI. https://git.unino.de/pvivell/radangel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

drone.yml 445B

1234567891011121314151617181920212223242526
  1. kind: pipeline
  2. name: default
  3. platform:
  4. os: linux
  5. arch: arm
  6. steps:
  7. - name: build
  8. image: debian:stable-slim
  9. privileged: false
  10. environment:
  11. DEBUG: true
  12. commands:
  13. - export PATH=$PATH
  14. - apt update
  15. - apt -y upgrade
  16. - apt -y install build-essential libc6-dev libhidapi-dev libssl-dev
  17. - cd src && make && ls -l ; cd ..
  18. - cd src/contrib && make && ls -l ; cd ../..
  19. when:
  20. branch:
  21. - master
  22. event:
  23. - push