2019-07-09 13:24:52 +00:00
|
|
|
.PHONY: all
|
2019-02-22 14:03:42 +00:00
|
|
|
all: container
|
|
|
|
|
2020-01-04 23:29:49 +00:00
|
|
|
DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
|
|
|
2020-01-09 03:58:16 +00:00
|
|
|
# Use docker to run makefile tasks
|
|
|
|
USE_DOCKER ?= true
|
|
|
|
|
|
|
|
# Disable run docker tasks if running in prow.
|
|
|
|
# only checks the existence of the variable, not the value.
|
|
|
|
ifdef DIND_TASKS
|
|
|
|
USE_DOCKER=false
|
|
|
|
endif
|
|
|
|
|
2019-07-09 13:24:52 +00:00
|
|
|
.PHONY: container
|
2019-02-22 14:03:42 +00:00
|
|
|
container:
|
2020-01-09 03:58:16 +00:00
|
|
|
ifeq ($(USE_DOCKER), true)
|
|
|
|
@${DIR}/../../build/run-in-docker.sh make e2e-test-binary
|
|
|
|
else
|
|
|
|
@make -C ${DIR}/../../ e2e-test-binary
|
|
|
|
endif
|
2019-02-22 14:03:42 +00:00
|
|
|
|
|
|
|
cp ../e2e/e2e.test .
|
|
|
|
cp ../e2e/wait-for-nginx.sh .
|
2019-04-30 16:45:58 +00:00
|
|
|
cp -r ../../deploy/cloud-generic .
|
|
|
|
cp -r ../../deploy/cluster-wide .
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2019-07-09 13:24:52 +00:00
|
|
|
docker build -t nginx-ingress-controller:e2e .
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2019-07-09 13:24:52 +00:00
|
|
|
.PHONY: clean
|
2019-02-22 14:03:42 +00:00
|
|
|
clean:
|
|
|
|
rm -rf _cache e2e.test kubectl cluster ginkgo
|
2019-07-09 13:24:52 +00:00
|
|
|
docker rmi -f nginx-ingress-controller:e2e || true
|