From b9968a3c25432abc36a881cf97b1ade784cd4ca0 Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Tue, 4 Dec 2018 18:13:15 -0500 Subject: [PATCH 1/5] add Dockerfile Signed-off-by: Mikolaj Pawlikowski --- build/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build/Dockerfile diff --git a/build/Dockerfile b/build/Dockerfile new file mode 100644 index 0000000..54d9fe4 --- /dev/null +++ b/build/Dockerfile @@ -0,0 +1,6 @@ +FROM scratch + +ADD bin/goldpinger /goldpinger +COPY static/index.html /static/index.html + +ENTRYPOINT ["/goldpinger", "--static-file-path", "/static"] From 3606ffcd2a66e3069afe2ccef23b1224cb940f5e Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Tue, 4 Dec 2018 18:13:50 -0500 Subject: [PATCH 2/5] Create build.sh Signed-off-by: Mikolaj Pawlikowski --- build/build.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 build/build.sh diff --git a/build/build.sh b/build/build.sh new file mode 100644 index 0000000..3ead649 --- /dev/null +++ b/build/build.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +# Copyright 2016 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# MODIFIED FROM https://github.com/thockin/go-build-template/blob/master/build/build.sh + +set -o errexit +set -o nounset +set -o pipefail + +if [ -z "${PKG}" ]; then + echo "PKG must be set" + exit 1 +fi +if [ -z "${ARCH}" ]; then + echo "ARCH must be set" + exit 1 +fi +if [ -z "${VERSION}" ]; then + echo "VERSION must be set" + exit 1 +fi + +export CGO_ENABLED=0 +export GOARCH="${ARCH}" + +go build \ + -o ./bin/${BIN} \ + ./cmd/${BIN} From 6f7b9085e7aee68160480bb517a5804c78e7ca54 Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Wed, 5 Dec 2018 19:34:27 +0000 Subject: [PATCH 3/5] make the build script executable Signed-off-by: Mikolaj Pawlikowski --- build/build.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 build/build.sh diff --git a/build/build.sh b/build/build.sh old mode 100644 new mode 100755 From 01ca2910e5a5b0ef4de1be12937762ed3e0b2ed9 Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Wed, 5 Dec 2018 19:49:02 +0000 Subject: [PATCH 4/5] specify bash in the build script Signed-off-by: Mikolaj Pawlikowski --- build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.sh b/build/build.sh index 3ead649..5f8a1f3 100755 --- a/build/build.sh +++ b/build/build.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright 2016 The Kubernetes Authors. # From 98a5cde646e63b5d3728abb0ed641652f3cd25e6 Mon Sep 17 00:00:00 2001 From: Mikolaj Pawlikowski Date: Wed, 5 Dec 2018 15:01:07 -0500 Subject: [PATCH 5/5] Update .travis.yml Signed-off-by: Mikolaj Pawlikowski --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8c7989b..eeac097 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,3 +3,5 @@ language: go go: - "1.10.x" - master + +script: go get -u github.com/golang/dep/cmd/dep && make vendor && make