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.

24 lines
352 B

  1. image: jimmycuadra/rust:nightly
  2. stages:
  3. - build
  4. - test
  5. build:
  6. stage: build
  7. script:
  8. - cargo build --release
  9. only:
  10. - master
  11. tags:
  12. - rust
  13. allow_failure: false
  14. test:
  15. stage: test
  16. script:
  17. - cargo test --release
  18. only:
  19. - master
  20. tags:
  21. - rust
  22. allow_failure: false