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.
24 lines
383 B
24 lines
383 B
branches:
|
|
only:
|
|
- master
|
|
language: go
|
|
go:
|
|
- 1.14.x
|
|
dist: bionic
|
|
arch:
|
|
- ppc64le
|
|
- s390x
|
|
env:
|
|
- GO111MODULE=on CGO_ENABLED=0
|
|
cache:
|
|
directories:
|
|
- $GOPATH/pkg/mod
|
|
- /home/travis/.cache/go-build
|
|
git:
|
|
depth: 1
|
|
|
|
install:
|
|
- go get -v -t -d ./...
|
|
script:
|
|
- go test -v -short ./...
|
|
- go build -trimpath -ldflags="-w -s" -v -o cmd/caddy/caddy cmd/caddy/main.go
|
|
|