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.

42 lines
553 B

  1. stages:
  2. - test
  3. test stable:
  4. image: scorpil/rust:stable
  5. stage: test
  6. script:
  7. - rustc -V
  8. - cargo -V
  9. - cargo test
  10. only:
  11. - master
  12. tags:
  13. - docker
  14. allow_failure: false
  15. test beta:
  16. image: scorpil/rust:beta
  17. stage: test
  18. script:
  19. - rustc -V
  20. - cargo -V
  21. - cargo test
  22. only:
  23. - master
  24. tags:
  25. - docker
  26. allow_failure: true
  27. test nightly:
  28. image: scorpil/rust:nightly
  29. stage: test
  30. script:
  31. - rustc -V
  32. - cargo -V
  33. - cargo test
  34. only:
  35. - master
  36. tags:
  37. - docker
  38. allow_failure: true