blob: 4b5f30485530fe3faf170fb74a97d33dd2a30a78 [file] [log] [blame]
SOURCEDIR=.
SOURCES := $(shell find $(SOURCEDIR) -name '*.go')
BINARY=wsk
VERSION=1.0.0
BUILD=`git rev-parse HEAD`
deps:
@echo "Installing dependencies"
go get -d -t ./...
LDFLAGS=-ldflags "-X main.Version=`date -u '+%Y-%m-%dT%H:%M:%S'` -X main.Build=`git rev-parse HEAD` "
updatedeps:
@echo "Updating all dependencies"
@go get -d -u -f -fix -t ./...
# Build the project
build: deps
go build ${LDFLAGS} -o ${BINARY}
test:
@echo "Launch the unit tests."
go test ./... -tags=unit
native_test:
@echo "Launch the native tests for the commands."
go test -v ./... -tags=native
# Run the integration test against OpenWhisk
integration_test:
@echo "Launch the integration tests."
go test -v ./... -tags=integration
format:
@echo "Formatting"
go fmt ./...
lint: format
@echo "Linting"
golint .
install:
go install
# Cleans our project: deletes binaries
clean:
if [ -f ${BINARY} ] ; then rm ${BINARY}; fi
.PHONY: clean install