mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
388 B
13 lines
388 B
# Makefile for the Docker image gcr.io/$(PROJECT)/expandybird
|
|
# MAINTAINER: Jack Greenfield <jackgr@google.com>
|
|
# If you update this image please check the tag value before pushing.
|
|
|
|
.PHONY : all build test push container clean
|
|
|
|
test: client
|
|
client --action=expand test/guestbook.yaml test/replicatedservice.py test/redis.jinja > /dev/null
|
|
|
|
client:
|
|
go get -v ./...
|
|
go install -v ./...
|