From b10c561e9617f2dd6e63d6ad8d63b23bd8c17748 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Mon, 22 Apr 2024 21:17:03 +0300 Subject: [PATCH] *: Drop neofs-s3-authmate Not used in runs, prints errors about missing binaries. Signed-off-by: Pavel Karpy --- services/neofs-s3-authmate/.env | 1 - services/neofs-s3-authmate/artifacts.mk | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 120000 services/neofs-s3-authmate/.env delete mode 100644 services/neofs-s3-authmate/artifacts.mk diff --git a/services/neofs-s3-authmate/.env b/services/neofs-s3-authmate/.env deleted file mode 120000 index c7360fb..0000000 --- a/services/neofs-s3-authmate/.env +++ /dev/null @@ -1 +0,0 @@ -../../.env \ No newline at end of file diff --git a/services/neofs-s3-authmate/artifacts.mk b/services/neofs-s3-authmate/artifacts.mk deleted file mode 100644 index 3eba958..0000000 --- a/services/neofs-s3-authmate/artifacts.mk +++ /dev/null @@ -1,20 +0,0 @@ -# Download neofs-s3-authmate to deploy test environment - -# Download neofs-s3-authmate binaries -get.neofs-s3-authmate: S3_GW_DEST=./vendor -get.neofs-s3-authmate: S3_AUTHMATE_BIN=neofs-s3-authmate -get.neofs-s3-authmate: S3_GW_BIN=neofs-s3-gw -get.neofs-s3-authmate: - @mkdir -p ${S3_GW_DEST} - -ifeq (${S3_GW_PATH},) - @echo "⇒ Download compiled neofs-s3-authmate from ${S3_AUTHMATE_URL}" - @curl -sSL ${S3_AUTHMATE_URL} -o ${S3_GW_DEST}/${S3_AUTHMATE_BIN} - @echo "⇒ Download compiled neofs-s3-gw from ${S3_GW_URL}" - @curl -sSL ${S3_GW_URL} -o ${S3_GW_DEST}/${S3_GW_BIN} -else - @echo "⇒ Copy compiled neofs-s3-authmate and from ${S3_GW_PATH}" - @cp -r ${S3_GW_PATH}/* ${S3_GW_DEST} -endif - @chmod +x ${S3_GW_DEST}/${S3_AUTHMATE_BIN} - @chmod +x ${S3_GW_DEST}/${S3_GW_BIN}