2014-07-03 15:29:49 +00:00
|
|
|
DISABLE_CACHE = 'false'
|
|
|
|
|
2015-07-11 21:29:24 +00:00
|
|
|
ARCH = rpi# rpi/amd64/i386/armv7hf
|
2014-07-03 15:29:49 +00:00
|
|
|
|
2015-10-04 18:17:22 +00:00
|
|
|
DEPLOY_REGISTRY =
|
2015-02-11 17:21:10 +00:00
|
|
|
|
2015-06-02 12:47:33 +00:00
|
|
|
SUPERVISOR_VERSION = master
|
2015-07-28 21:10:17 +00:00
|
|
|
JOB_NAME = 1
|
2014-07-03 15:29:49 +00:00
|
|
|
|
2015-10-01 11:07:58 +00:00
|
|
|
all: supervisor
|
2014-07-03 15:29:49 +00:00
|
|
|
|
2015-02-03 17:10:37 +00:00
|
|
|
IMAGE = "resin/$(ARCH)-supervisor:$(SUPERVISOR_VERSION)"
|
2015-09-02 19:19:24 +00:00
|
|
|
SUPERVISOR_IMAGE=$(DEPLOY_REGISTRY)$(IMAGE)
|
2014-10-17 11:23:20 +00:00
|
|
|
|
2015-10-14 19:53:33 +00:00
|
|
|
PUBNUB_SUBSCRIBE_KEY = sub-c-bananas
|
|
|
|
PUBNUB_PUBLISH_KEY = pub-c-bananas
|
|
|
|
MIXPANEL_TOKEN = bananasbananas
|
|
|
|
|
2015-07-17 20:47:26 +00:00
|
|
|
ifeq ($(ARCH),rpi)
|
|
|
|
GOARCH = arm
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),armv7hf)
|
|
|
|
GOARCH = arm
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
GOARCH = 386
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),amd64)
|
|
|
|
GOARCH = amd64
|
|
|
|
endif
|
2015-10-01 11:07:58 +00:00
|
|
|
SUPERVISOR_DIND_MOUNTS := -v $$(pwd)/../../:/resin-supervisor -v $$(pwd)/config.json:/mnt/conf/config.json -v $$(pwd)/config/env:/usr/src/app/config/env -v $$(pwd)/config/localenv:/usr/src/app/config/localenv -v /sys/fs/cgroup:/sys/fs/cgroup:ro
|
2015-09-02 19:19:24 +00:00
|
|
|
ifdef PRELOADED_IMAGE
|
|
|
|
SUPERVISOR_DIND_MOUNTS := ${SUPERVISOR_DIND_MOUNTS} -v $$(pwd)/apps.json:/usr/src/app/config/apps.json
|
|
|
|
else
|
|
|
|
PRELOADED_IMAGE=
|
|
|
|
endif
|
2015-07-17 20:47:26 +00:00
|
|
|
|
2014-10-17 11:23:20 +00:00
|
|
|
clean:
|
2015-02-17 00:52:45 +00:00
|
|
|
-rm Dockerfile
|
2014-10-07 17:41:49 +00:00
|
|
|
|
2015-06-02 12:47:33 +00:00
|
|
|
supervisor-dind:
|
2015-10-07 18:09:03 +00:00
|
|
|
cp 01_nodoc tools/dind/config/
|
2015-06-02 12:47:33 +00:00
|
|
|
cd tools/dind && docker build --no-cache=$(DISABLE_CACHE) -t resin/resin-supervisor-dind:$(SUPERVISOR_VERSION) .
|
2015-10-07 18:09:03 +00:00
|
|
|
rm tools/dind/config/01_nodoc
|
2015-06-02 12:47:33 +00:00
|
|
|
|
2015-07-16 20:12:09 +00:00
|
|
|
run-supervisor: supervisor-dind stop-supervisor
|
2015-06-02 12:47:33 +00:00
|
|
|
cd tools/dind \
|
2015-09-02 19:19:24 +00:00
|
|
|
&& echo "SUPERVISOR_IMAGE=$(SUPERVISOR_IMAGE)\nPRELOADED_IMAGE=$(PRELOADED_IMAGE)" > config/localenv \
|
|
|
|
&& docker run -d --name resin_supervisor_1 --privileged ${SUPERVISOR_DIND_MOUNTS} resin/resin-supervisor-dind:$(SUPERVISOR_VERSION)
|
2015-06-02 12:47:33 +00:00
|
|
|
|
2015-07-16 16:23:14 +00:00
|
|
|
stop-supervisor:
|
2015-07-31 17:17:57 +00:00
|
|
|
# Stop docker and remove volumes to prevent us from running out of loopback devices,
|
2015-07-16 20:12:09 +00:00
|
|
|
# as per https://github.com/jpetazzo/dind/issues/19
|
2015-08-03 19:06:03 +00:00
|
|
|
-docker exec resin_supervisor_1 bash -c "systemctl stop docker" || true
|
|
|
|
-docker stop resin_supervisor_1 > /dev/null || true
|
|
|
|
-docker rm -f --volumes resin_supervisor_1 > /dev/null || true
|
2015-07-16 16:23:14 +00:00
|
|
|
|
2015-07-23 17:00:37 +00:00
|
|
|
supervisor: gosuper
|
2014-10-17 12:21:47 +00:00
|
|
|
cp Dockerfile.$(ARCH) Dockerfile
|
|
|
|
echo "ENV VERSION "`jq -r .version package.json` >> Dockerfile
|
2015-10-14 21:50:26 +00:00
|
|
|
echo "ENV DEFAULT_PUBNUB_PUBLISH_KEY $(PUBNUB_PUBLISH_KEY)" >> Dockerfile
|
|
|
|
echo "ENV DEFAULT_PUBNUB_SUBSCRIBE_KEY $(PUBNUB_SUBSCRIBE_KEY)" >> Dockerfile
|
|
|
|
echo "ENV DEFAULT_MIXPANEL_TOKEN $(MIXPANEL_TOKEN)" >> Dockerfile
|
2015-10-04 18:17:22 +00:00
|
|
|
docker build --no-cache=$(DISABLE_CACHE) -t $(IMAGE) .
|
2015-02-20 16:08:18 +00:00
|
|
|
-rm Dockerfile
|
2014-07-03 15:29:49 +00:00
|
|
|
|
2015-02-11 17:21:10 +00:00
|
|
|
deploy: supervisor
|
2015-10-04 18:17:22 +00:00
|
|
|
docker tag -f $(IMAGE) $(SUPERVISOR_IMAGE)
|
|
|
|
bash retry_docker_push.sh $(SUPERVISOR_IMAGE)
|
2015-02-11 17:21:10 +00:00
|
|
|
|
2015-07-17 20:47:26 +00:00
|
|
|
go-builder:
|
2015-07-31 17:17:57 +00:00
|
|
|
-cp tools/dind/config.json ./gosuper/
|
|
|
|
cd gosuper && docker build -t resin/go-supervisor-builder:$(SUPERVISOR_VERSION) .
|
|
|
|
-rm ./gosuper/config.json
|
2015-07-17 20:47:26 +00:00
|
|
|
|
|
|
|
gosuper: go-builder
|
2015-08-11 16:02:44 +00:00
|
|
|
-mkdir -p bin
|
2015-08-03 19:06:03 +00:00
|
|
|
-docker rm --volumes -f resin_build_gosuper_$(JOB_NAME) || true
|
2015-08-11 16:02:44 +00:00
|
|
|
docker run --name resin_build_gosuper_$(JOB_NAME) -v $(shell pwd)/gosuper/bin:/usr/src/app/bin -e USER_ID=$(shell id -u) -e GROUP_ID=$(shell id -g) -e GOARCH=$(GOARCH) resin/go-supervisor-builder:$(SUPERVISOR_VERSION)
|
2015-07-28 21:10:17 +00:00
|
|
|
docker rm --volumes -f resin_build_gosuper_$(JOB_NAME)
|
2015-08-11 16:02:44 +00:00
|
|
|
mv gosuper/bin/linux_$(GOARCH)/gosuper bin/gosuper
|
2015-07-23 21:14:50 +00:00
|
|
|
|
|
|
|
test-gosuper: go-builder
|
2015-08-03 19:06:03 +00:00
|
|
|
-docker rm --volumes -f resin_test_gosuper_$(JOB_NAME) || true
|
2015-09-09 14:32:37 +00:00
|
|
|
docker run --name resin_test_gosuper_$(JOB_NAME) -v /var/run/dbus:/mnt/root/run/dbus -e DBUS_SYSTEM_BUS_ADDRESS="unix:path=/mnt/root/run/dbus/system_bus_socket" resin/go-supervisor-builder:$(SUPERVISOR_VERSION) bash -c "cd src/resin-supervisor/gosuper && ./test_formatting.sh && go test -v ./gosuper"
|
2015-07-31 17:17:57 +00:00
|
|
|
docker rm --volumes -f resin_test_gosuper_$(JOB_NAME)
|
|
|
|
|
|
|
|
format-gosuper: go-builder
|
2015-08-03 19:06:03 +00:00
|
|
|
-docker rm --volumes -f resin_test_gosuper_$(JOB_NAME) || true
|
2015-08-11 16:02:44 +00:00
|
|
|
docker run --name resin_test_gosuper_$(JOB_NAME) -v $(shell pwd)/gosuper:/usr/src/app/src/resin-supervisor/gosuper resin/go-supervisor-builder:$(SUPERVISOR_VERSION) bash -c "cd src/resin-supervisor/gosuper && go fmt ./..."
|
2015-07-28 21:10:17 +00:00
|
|
|
docker rm --volumes -f resin_test_gosuper_$(JOB_NAME)
|
|
|
|
|
|
|
|
test-integration: go-builder
|
2015-08-03 19:06:03 +00:00
|
|
|
-docker rm --volumes -f resin_test_integration_$(JOB_NAME) || true
|
2015-09-14 19:51:03 +00:00
|
|
|
docker run --name resin_test_integration_$(JOB_NAME) --net=host -e SUPERVISOR_IP="$(shell docker inspect --format '{{ .NetworkSettings.IPAddress }}' resin_supervisor_1)" --volumes-from resin_supervisor_1 -v /var/run/dbus:/mnt/root/run/dbus -e DBUS_SYSTEM_BUS_ADDRESS="unix:path=/mnt/root/run/dbus/system_bus_socket" resin/go-supervisor-builder:$(SUPERVISOR_VERSION) bash -c "cd src/resin-supervisor/gosuper && go test -v ./supertest"
|
2015-07-28 21:10:17 +00:00
|
|
|
docker rm --volumes -f resin_test_integration_$(JOB_NAME)
|
2015-07-17 20:47:26 +00:00
|
|
|
|
2015-06-02 12:47:33 +00:00
|
|
|
.PHONY: supervisor deploy supervisor-dind run-supervisor
|