mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
This commit updates the used Go version to 1.16. The biggest benefit from this is that with Go 1.16 (and the latest Goreleaser) support for Apple Silicon is available, therefore wtf would work on Apple Silicon. Signed-off-by: Lukas Kämmerling <lukas.kaemmerling@hetzner-cloud.de>
15 lines
547 B
YAML
15 lines
547 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.16.x"
|
|
|
|
before_install:
|
|
# Make sure travis builds work for forks
|
|
- mkdir -p $TRAVIS_BUILD_DIR $GOPATH/src/github.com/wtfutil
|
|
- test ! -d $GOPATH/src/github.com/wtfutil/wtf && mv $TRAVIS_BUILD_DIR $GOPATH/src/github.com/wtfutil/wtf || true
|
|
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/wtfutil/wtf
|
|
- cd $HOME/gopath/src/github.com/wtfutil/wtf
|
|
- export GOPROXY="https://proxy.golang.org,direct"
|
|
|
|
script: go get ./... && ./scripts/check-uncommitted-vendor-files.sh && go test -v github.com/wtfutil/wtf/...
|