diff --git a/build/make/test.mk b/build/make/test.mk deleted file mode 100644 index 675c955..0000000 --- a/build/make/test.mk +++ /dev/null @@ -1,2 +0,0 @@ -test: php - $(call script,$@) \ No newline at end of file diff --git a/build/make/testing.mk b/build/make/testing.mk new file mode 100644 index 0000000..b0b625f --- /dev/null +++ b/build/make/testing.mk @@ -0,0 +1,3 @@ +testing: + #$(call download,$@) + $(call download,scripts/$@,/opt/tmp) \ No newline at end of file diff --git a/build/scripts/testing.sh b/build/scripts/testing.sh new file mode 100644 index 0000000..50504b2 --- /dev/null +++ b/build/scripts/testing.sh @@ -0,0 +1 @@ +#!/bin/bash set -e source /build/config set -x ## Environment echo "test" \ No newline at end of file diff --git a/images/test.mk b/images/testing.mk similarity index 66% rename from images/test.mk rename to images/testing.mk index c6f8961..6496919 100644 --- a/images/test.mk +++ b/images/testing.mk @@ -1,6 +1,6 @@ include $(DOCKER_HOME)/build/Makefile -NAME = test +NAME = testing VERSION = latest -build: php test \ No newline at end of file +build: testing \ No newline at end of file