From b68b0a442a0b9390f1f0fddc5c85da4de009be10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Tue, 18 Jul 2023 16:33:08 +0200 Subject: [PATCH] test: Remove now unnecessary Makefile --- test/Makefile | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/Makefile diff --git a/test/Makefile b/test/Makefile deleted file mode 100644 index 0a1d617d0..000000000 --- a/test/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -APACHE_BASE ?= /usr/local/apache -APACHE_INC ?= ${APACHE_BASE}/include -IMG ?= quay.io/${USER}/tomcat_mod_cluster:latest -MOD_CLUSTER_VERSION ?= 2.0.3.Final-SNAPSHOT - -Advertise: Advertise.c - cc -c -I$(APACHE_INC) Advertise.c - cc -o Advertise Advertise.o -L$(APACHE_BASE)/lib -lapr-1 - -jars: - mvn dependency:copy-dependencies - -docker-build: jars - docker build -t ${IMG} . - -docker-push: ## Push docker image with the manager. - docker push ${IMG} - -setup-httpd: - cd httpd - docker build -t quay.io/${USER}/mod_cluster_httpd . - docker run -d --network=host quay.io/${USER}/httpd_mod_cluster - cd .. - -tests: - IMG=${IMG} sh tests.sh