From 32e2a519b7485b53cf426e7b50dd332a9ce4f718 Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Thu, 12 Apr 2018 13:51:33 +0200 Subject: [PATCH] Update go to 1.10.1, add win64 build --- .gitignore | 1 + Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4f9d594..55a453a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /oidc-token-ferry /oidc-token-ferry.darwin-amd64 /oidc-token-ferry.linux-amd64 +/oidc-token-ferry.windows-amd64 diff --git a/Makefile b/Makefile index 157a298..6510546 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROGRAM = oidc-token-ferry GO_PACKAGE = github.com/twz123/$(PROGRAM) -BUILDER_IMAGE = docker.io/golang:1.9.2-alpine3.7 +BUILDER_IMAGE = docker.io/golang:1.10.1-alpine3.7 # binaries DOCKER = docker @@ -23,6 +23,7 @@ endef $(eval $(call _os_arch_program,linux,amd64)) $(eval $(call _os_arch_program,darwin,amd64)) +$(eval $(call _os_arch_program,windows,amd64)) .PHONY: all all: $(OS_ARCH_PROGRAMS)