gmsm/.travis.yml

29 lines
412 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:
2021-12-29 08:42:01 +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:
2021-12-29 08:42:01 +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
2021-12-23 13:05:08 +08:00
go: 1.17.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-12-31 10:44:04 +08:00
- go build ./...
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=^$ ./...