You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buildx/vendor/github.com/tonistiigi/fsutil/.travis.yml

24 lines
342 B
YAML

dist: trusty
sudo: required
services:
- docker
language: go
go:
- "1.12.x"
install:
- export GO111MODULE=on
script:
- go build ./...
- go test -c -o test ./
- sudo ./test -test.v
- go test -c -o test ./copy
- sudo ./test -test.v
- GOOS=darwin go build ./...
- GOOS=windows go build ./...
- GOARCH=arm GOARM=7 go build ./...