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.

64 lines
1.4 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
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. group: tests
  11. commands:
  12. - go mod download
  13. - go test ./... -v
  14. - go test -bench ./...
  15. test-1.13:
  16. image: golang:1.13
  17. group: tests
  18. commands:
  19. - go mod download
  20. - go test ./... -v
  21. - go test -bench ./...
  22. test-1.12:
  23. image: golang:1.12
  24. group: tests
  25. commands:
  26. - go mod download
  27. - go test ./... -v
  28. - go test -bench ./...
  29. test-1.11:
  30. image: golang:1.11
  31. group: tests
  32. commands:
  33. - go mod download
  34. - go test ./... -v
  35. - go test -bench ./...
  36. test-1.10:
  37. image: golang:1.10
  38. group: tests
  39. commands:
  40. - mkdir -p /go/src/github.com/gissleh/
  41. - ln -s /project/irc /go/src/github.com/gissleh/irc
  42. - cd /go/src/github.com/gissleh/irc/
  43. - ls -lR
  44. - go test ./... -v
  45. - go test -bench ./...
  46. test-1.9:
  47. image: golang:1.9
  48. group: tests
  49. commands:
  50. - mkdir -p /go/src/github.com/gissleh/
  51. - ln -s /project/irc /go/src/github.com/gissleh/irc
  52. - cd /go/src/github.com/gissleh/irc/
  53. - go test ./... -v
  54. - go test -bench ./...
  55. test-1.8:
  56. image: golang:1.8
  57. group: tests
  58. commands:
  59. - mkdir -p /go/src/github.com/gissleh/
  60. - ln -s /project/irc /go/src/github.com/gissleh/irc
  61. - cd /go/src/github.com/gissleh/irc/
  62. - go test ./... -v
  63. - go test -bench ./...