From 4ca301a776ef73946137797055575147cd272646 Mon Sep 17 00:00:00 2001 From: Sylvain Juge <763082+SylvainJuge@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:58:58 +0200 Subject: [PATCH] add list of published artifacts --- .ci/scripts/published-artifacts-list.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 .ci/scripts/published-artifacts-list.sh diff --git a/.ci/scripts/published-artifacts-list.sh b/.ci/scripts/published-artifacts-list.sh new file mode 100755 index 0000000000..32edfc6d5a --- /dev/null +++ b/.ci/scripts/published-artifacts-list.sh @@ -0,0 +1,21 @@ +#!/bin/env bash + +targets="$(find . -type d -name 'target'|grep -v apm-agent-plugins|grep -v integration-tests|sort)" + +for t in ${targets}; do + find "${t}" \ + -name '*.jar' \ + | grep -v '\-sources.jar' \ + | grep -v '\-tests.jar' \ + | grep -v '\-javadoc.jar' \ + | grep -v 'original-' \ + | grep -v 'classes/' \ + | grep -v 'benchmarks' \ + | grep -v 'apm-agent-bootstrap' \ + | grep -v 'apm-agent-builds' \ + | grep -v 'apm-agent-cached-lookup-key' \ + | grep -v 'apm-agent-core' \ + | grep -v 'apm-agent-common' \ + | grep -v 'apm-agent-lambda-layer' \ + | grep -v 'apm-agent-premain' +done