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.

25 lines
493 B

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