From 0f5e7e011cd3f023fa69675c10ad022f0dc7f712 Mon Sep 17 00:00:00 2001 From: Adin Scannell Date: Mon, 29 Apr 2019 10:00:02 -0700 Subject: [PATCH] build: fix deploy target for Makefile Because the go.mod and related files were not being copying, the packages are resolved within the current $GOROOT, which does not work. This change copies all application files, not just Go source files and app.yaml. --- Makefile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 6c708a977..7415fc653 100644 --- a/Makefile +++ b/Makefile @@ -5,21 +5,19 @@ NPM := npm GCLOUD := gcloud GCP_PROJECT := gvisor-website -# Source Go files. example: main.go foo/bar.go -GO_SOURCE = $(shell find cmd/gvisor-website -type f -name "*.go" | sed 's/ /\\ /g') -# Target Go files. example: public/main.go public/foo/bar.go -GO_TARGET = $(shell cd cmd/gvisor-website && find . -type f -name "*.go" | sed 's/ /\\ /g' | sed 's/^.\//public\//') +# Source Go files, example: main.go, foo/bar.go. +APP_SOURCE = $(wildcard cmd/gvisor-website/*) +# Target Go files, example: public/main.go, public/foo/bar.go. +APP_TARGET = $(patsubst cmd/gvisor-website/%,public/%,$(APP_SOURCE)) default: website .PHONY: default -website: all-upstream public/app.yaml $(GO_TARGET) public/static +website: all-upstream $(APP_TARGET) public/static .PHONY: website public: mkdir -p public -public/app.yaml: public - cp -vr cmd/gvisor-website/app.yaml public/ # Load repositories. upstream: @@ -39,8 +37,8 @@ content/docs/community/sigs: upstream/community $(wildcard upstream/community/si cat upstream/community/sigs/$$file.md |grep -v -E '^# ' >> content/docs/community/sigs/$$file.md; \ done -$(GO_TARGET): public $(GO_SOURCE) - cd cmd/gvisor-website && find . -name "*.go" -exec cp --parents \{\} ../../public \; +$(APP_TARGET): public $(APP_SOURCE) + cp -a cmd/gvisor-website/$(patsubst public/%,%,$@) public/ public/static: node_modules config.toml $(shell find archetypes assets content themes -type f | sed 's/ /\\ /g') HUGO_ENV="production" $(HUGO) @@ -56,7 +54,7 @@ server: all-upstream .PHONY: server # Deploy the website to App Engine. -deploy: public/app.yaml +deploy: $(APP_TARGET) cd public && $(GCLOUD) app deploy .PHONY: deploy