From afae1ce57ddd00cb4815d3f79d4e40a05ba143cf Mon Sep 17 00:00:00 2001 From: Ping-Lin Chang Date: Wed, 4 Sep 2024 23:08:40 +0100 Subject: [PATCH] ci(Makefile): remove integration test targets in help --- Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 9c36fc19..637e1094 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ else endif .PHONY: build-latest -build-latest: ## Build latest images for all Instill Core components +build-latest: ## Build latest images for all services @if [ "${BUILD}" = "true" ]; then \ docker build --progress plain \ --build-arg ALPINE_VERSION=${ALPINE_VERSION} \ @@ -102,7 +102,7 @@ build-latest: ## Build latest images for all Instill Core components fi .PHONY: build-release -build-release: ## Build release images for all Instill Core components +build-release: ## Build release images for all services @if [ "${BUILD}" = "true" ]; then \ docker build --progress plain \ --build-arg ALPINE_VERSION=${ALPINE_VERSION} \ @@ -177,7 +177,7 @@ doc: ## Run Redoc for OpenAPI spec at http://localhost:3001 @EDITION= DEFAULT_USER_UID= docker compose up -d redoc_openapi .PHONY: integration-test-latest -integration-test-latest: ## Run integration test on the latest VDP +integration-test-latest: # Run integration test on the latest VDP @make latest BUILD=true EDITION=local-ce:test @docker run --rm \ --network instill-network \ @@ -190,7 +190,7 @@ integration-test-latest: ## Run integration test on the latest VDP @make down .PHONY: integration-test-release -integration-test-release: ## Run integration test on the release VDP +integration-test-release: # Run integration test on the release VDP @make all BUILD=true EDITION=local-ce:test @docker run --rm \ --network instill-network \ @@ -203,7 +203,7 @@ integration-test-release: ## Run integration test on the release VDP @make down .PHONY: helm-integration-test-latest -helm-integration-test-latest: ## Run integration test on the Helm latest for VDP +helm-integration-test-latest: # Run integration test on the Helm latest for VDP @make build-latest BUILD=true @helm install ${HELM_RELEASE_NAME} charts/core \ --namespace ${HELM_NAMESPACE} --create-namespace \ @@ -243,7 +243,7 @@ endif @make down .PHONY: helm-integration-test-release -helm-integration-test-release: ## Run integration test on the Helm release for VDP +helm-integration-test-release: # Run integration test on the Helm release for VDP @make build-release BUILD=true @helm install ${HELM_RELEASE_NAME} charts/core \ --namespace ${HELM_NAMESPACE} --create-namespace \ @@ -283,7 +283,7 @@ endif @make down .PHONY: console-integration-test-latest -console-integration-test-latest: ## Run console integration test on the latest Instill Core +console-integration-test-latest: # Run console integration test on the latest Instill Core @make latest BUILD=true EDITION=local-ce:test INSTILL_CORE_HOST=${API_GATEWAY_HOST} @docker run --rm \ -e NEXT_PUBLIC_GENERAL_API_VERSION=v1beta \ @@ -301,7 +301,7 @@ console-integration-test-latest: ## Run console integration test on the latest @make down .PHONY: console-integration-test-release -console-integration-test-release: ## Run console integration test on the release Instill Core +console-integration-test-release: # Run console integration test on the release Instill Core @make all BUILD=true EDITION=local-ce:test INSTILL_CORE_HOST=${API_GATEWAY_HOST} @docker run --rm \ -e NEXT_PUBLIC_GENERAL_API_VERSION=v1beta \ @@ -319,7 +319,7 @@ console-integration-test-release: ## Run console integration test on the relea @make down .PHONY: console-helm-integration-test-latest -console-helm-integration-test-latest: ## Run console integration test on the Helm latest for Instill Core +console-helm-integration-test-latest: # Run console integration test on the Helm latest for Instill Core @make build-latest BUILD=true ifeq ($(UNAME_S),Darwin) @helm install ${HELM_RELEASE_NAME} charts/core --namespace ${HELM_NAMESPACE} --create-namespace \ @@ -399,7 +399,7 @@ endif @make down .PHONY: console-helm-integration-test-release -console-helm-integration-test-release: ## Run console integration test on the Helm release for Instill Core +console-helm-integration-test-release: # Run console integration test on the Helm release for Instill Core @make build-release BUILD=true ifeq ($(UNAME_S),Darwin) @helm install ${HELM_RELEASE_NAME} charts/core --namespace ${HELM_NAMESPACE} --create-namespace \ @@ -480,5 +480,5 @@ endif .PHONY: help help: ## Show this help - @echo "\nMake Application with Docker Compose" - @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m (default: help)\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-30s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST) + @echo "\nMake Application with Instill Core" + @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m (default: help)\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST)