A very simple Stopwatch for the command line
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.

26 lines
516 B

  1. workspace:
  2. base: /code
  3. path: src
  4. pipeline:
  5. release:
  6. image: rust:1.32
  7. commands:
  8. - cargo build --release
  9. when:
  10. event: tag
  11. test:
  12. image: rust:1.32
  13. commands:
  14. - cargo test
  15. when:
  16. branch: master
  17. gitea_release:
  18. image: plugins/gitea-release
  19. secrets: [ gitea_token ]
  20. base_url: https://git.schneider-hosting.de/
  21. files: target/release/stopwatch
  22. when:
  23. event: tag