Skip to content

Commit c987020

Browse files
authored
[ci] add list of published artifacts (#3595)
1 parent d63b1cc commit c987020

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/env bash
2+
3+
targets="$(find . -type d -name 'target'|grep -v apm-agent-plugins|grep -v integration-tests|sort)"
4+
5+
for t in ${targets}; do
6+
find "${t}" \
7+
-name '*.jar' \
8+
| grep -v '\-sources.jar' \
9+
| grep -v '\-tests.jar' \
10+
| grep -v '\-javadoc.jar' \
11+
| grep -v 'original-' \
12+
| grep -v 'classes/' \
13+
| grep -v 'benchmarks' \
14+
| grep -v 'apm-agent-bootstrap' \
15+
| grep -v 'apm-agent-builds' \
16+
| grep -v 'apm-agent-cached-lookup-key' \
17+
| grep -v 'apm-agent-core' \
18+
| grep -v 'apm-agent-common' \
19+
| grep -v 'apm-agent-lambda-layer' \
20+
| grep -v 'apm-agent-premain'
21+
done

0 commit comments

Comments
 (0)