mirror of https://github.com/kubeflow/examples.git
54 lines
2.0 KiB
Makefile
54 lines
2.0 KiB
Makefile
# Copyright 2017 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.
|
|
#
|
|
# Requirements:
|
|
# Make sure ${GOPATH}/src/github.com/kubeflow/examples
|
|
# points at a checked out version of the examples repository.
|
|
IMG = gcr.io/kubeflow-examples/gh-issue-hp-tuner
|
|
DIR := ${CURDIR}
|
|
|
|
# List any changed files.
|
|
CHANGED_FILES := $(shell git diff-files --relative=examples/GKEDemo)
|
|
|
|
ifeq ($(strip $(CHANGED_FILES)),)
|
|
# Changed files is empty; not dirty
|
|
# Don't include --dirty because it could be dirty if files outside the ones we care
|
|
# about changed.
|
|
TAG := $(shell date +v%Y%m%d)-$(shell git describe --always)
|
|
else
|
|
TAG := $(shell date +v%Y%m%d)-$(shell git describe --always --dirty)-$(shell git diff | shasum -a256 | cut -c -6)
|
|
endif
|
|
|
|
all: build
|
|
|
|
# To build without the cache set the environment variable
|
|
# export DOCKER_BUILD_OPTS=--no-cache
|
|
build: Dockerfile git-issue-summarize-demo.go
|
|
mkdir -p build
|
|
dep ensure
|
|
go build -i -o ./build/git-issue-summarize-demo ${GOPATH}/src/github.com/kubeflow/examples/github_issue_summarization/hp-tune/git-issue-summarize-demo.go
|
|
docker build ${DOCKER_BUILD_OPTS} -t $(IMG):$(TAG) .
|
|
docker tag $(IMG):$(TAG) $(IMG):latest
|
|
@echo Built $(IMG):$(TAG)
|
|
|
|
# Build but don't attach the latest tag. This allows manual testing/inspection of the image
|
|
# first.
|
|
push: build
|
|
gcloud docker -- push $(IMG):$(TAG)
|
|
@echo Pushed $(IMG) with :$(TAG) tags
|
|
|
|
push-latest: push
|
|
gcloud container images add-tag --quiet $(IMG):$(TAG) $(IMG):latest --verbosity=info
|
|
echo created $(IMG):latest
|