From 13cbb8b617efd72d838b293329c292cfd53ef76c Mon Sep 17 00:00:00 2001 From: Burcu Dogan Date: Mon, 10 Nov 2014 15:40:49 +1100 Subject: [PATCH] Disable builds for classic App Engine. Current build file doesn't build the subdirectories, therefore succeeds without building the actual packages. We need to add the appengine and appengine_internal manually to the GOPATH and enable the appengine build again. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d835cb..9ab73b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: go go: 1.3 install: - go get -v -tags='appengine appenginevm' ./... && hg clone https://code.google.com/p/appengine-go/ $GOPATH/appengine + - go get -v -tags='appengine appenginevm' ./... script: - go test -v -tags='appengine appenginevm' ./... && go build -v -tags='appengine' + - go test -v -tags='appengine appenginevm' ./...