From dde64061501debc766285a86c487d8f21d72fe5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Fri, 27 Jun 2025 23:04:24 +0200 Subject: [PATCH] Remove conan-upload from Makefile --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index b4c8c69..0547324 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ SHELL := /bin/bash .DEFAULT_GOAL := help -.PHONY: help build test clean conan-build conan-upload +.PHONY: help build test clean conan-build f_debug = build_debug test_targets = unit_tests_arffFiles @@ -49,11 +49,6 @@ conan-build: ## Build Conan package locally @conan create . --profile default @echo ">>> Done"; -conan-upload: ## Upload package to Cimmeria JFrog Artifactory - @echo ">>> Uploading to Cimmeria JFrog Artifactory..."; - @conan upload arff-files --all -r Cimmeria --confirm - @echo ">>> Done"; - help: ## Show help message @IFS=$$'\n' ; \ help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \