Files
buildx/vendor/github.com/tonistiigi/fsutil/.travis.yml
Silvin Lubecki bbc902b4d6 Bump buildkit to master and fix versions incompatible with go mod 1.13
Bump github.com/gogo/googleapis to v1.3.2
Bump github.com/docker/cli to master

Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
2020-03-04 18:37:42 +01:00

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 ./...