From 1332ab979ea68aab9be7bb5ea45c6fcff82e4904 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 7 Nov 2017 11:48:56 +0000 Subject: [PATCH] Remove travis.yml Signed-off-by: Ian Campbell --- .travis.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2d8a43b9e..000000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: go - -go: - - 1.9.x - -env: - - TRAVIS_GOOS=linux - - TRAVIS_GOOS=darwin - - TRAVIS_GOOS=windows - -script: -# We want native versions of the tools. - - go get -u github.com/golang/lint/golint - - go get -u github.com/gordonklaus/ineffassign - - export GOOS=$TRAVIS_GOOS -# FIXME: For non-linux GOOS, without running `go build -i`, vet fails with `vet: import failed: can't find import: fmt`... -# Note that `go build -i` requires write permission to GOROOT. (So it is not called in Makefile) - - go build -i github.com/linuxkit/linuxkit/src/cmd/linuxkit - - make local-check - - make local-build - - if [ "$GOOS" = "linux" ]; then make local-test ; fi