gmsm/.travis.yml

28 lines
388 B
YAML
Raw Normal View History

2021-02-16 20:02:07 +08:00
language: go
2021-02-16 20:10:50 +08:00
2021-02-16 20:02:07 +08:00
go:
2022-01-02 21:36:26 +08:00
- "1.15.x"
- "1.16.x"
- "1.17.x"
2021-02-16 20:10:50 +08:00
2021-12-21 10:52:02 +08:00
jobs:
include:
2022-01-02 21:36:26 +08:00
- arch: ppc64le
go: 1.17.x
2021-12-21 10:52:02 +08:00
- arch: arm64-graviton2
virt: vm
os: linux
dist: focal
2022-01-10 16:58:39 +08:00
go: 1.16.x
2021-12-21 10:52:02 +08:00
group: edge
2021-02-16 20:10:50 +08:00
install:
2021-06-10 11:02:05 +08:00
- go mod tidy
2021-02-16 20:10:50 +08:00
- go mod download
script:
2021-02-16 20:10:50 +08:00
- go test -v ./...
2021-12-28 13:19:58 +08:00
2021-12-29 09:03:14 +08:00
after_success:
- go test -v -short -bench . -run=^$ ./...