gmsm/.travis.yml

23 lines
326 B
YAML
Raw Normal View History

2022-01-21 11:24:10 +08:00
language: go
jobs:
include:
2022-01-27 14:18:23 +08:00
- arch: ppc64le
go: 1.17.x
2022-01-21 11:24:10 +08:00
- arch: arm64-graviton2
virt: vm
os: linux
dist: focal
2022-03-31 08:19:58 +08:00
go: 1.16.x
2022-01-21 11:24:10 +08:00
group: edge
install:
- go mod tidy
- go mod download
script:
2022-01-26 09:54:12 +08:00
- go test -v -short ./...
2022-01-21 11:24:10 +08:00
2022-01-21 12:58:39 +08:00
#after_success:
# - go test -v -short -bench . -run=^$ ./...