Mirror of github.com/gissleh/irc
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.

69 lines
1.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. name: irc
  2. kind: pipeline
  3. type: exec
  4. workspace:
  5. base: /project
  6. path: irc/
  7. pipeline:
  8. test-1.14:
  9. image: golang:1.14
  10. commands:
  11. - go mod download
  12. - go test ./... -v
  13. - go test -bench ./...
  14. test-1.13:
  15. image: golang:1.13
  16. commands:
  17. - go mod download
  18. - go test ./... -v
  19. - go test -bench ./...
  20. test-1.12:
  21. image: golang:1.12
  22. commands:
  23. - go mod download
  24. - go test ./... -v
  25. - go test -bench ./...
  26. test-1.11:
  27. image: golang:1.11
  28. commands:
  29. - go mod download
  30. - go test ./... -v
  31. - go test -bench ./...
  32. test-1.10:
  33. image: golang:1.10
  34. commands:
  35. - mkdir -p /go/src/github.com/gissleh/
  36. - ln -s /project/irc /go/src/github.com/gissleh/irc
  37. - cd /go/src/github.com/gissleh/irc/
  38. - ls -lR
  39. - go test ./... -v
  40. - go test -bench ./...
  41. test-1.9:
  42. image: golang:1.9
  43. commands:
  44. - mkdir -p /go/src/github.com/gissleh/
  45. - ln -s /project/irc /go/src/github.com/gissleh/irc
  46. - cd /go/src/github.com/gissleh/irc/
  47. - go test ./... -v
  48. - go test -bench ./...
  49. test-1.8:
  50. image: golang:1.8
  51. commands:
  52. - mkdir -p /go/src/github.com/gissleh/
  53. - ln -s /project/irc /go/src/github.com/gissleh/irc
  54. - cd /go/src/github.com/gissleh/irc/
  55. - go test ./... -v
  56. - go test -bench ./...
  57. done:
  58. image: golang:1.8
  59. depends_on:
  60. - test-1.14
  61. - test-1.13
  62. - test-1.12
  63. - test-1.11
  64. - test-1.10
  65. - test-1.9
  66. - test-1.8
  67. commands:
  68. - "Dummy step for parallelization."