14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Save all important libs into (project-root)/libs
|
|
# This folder will be saved by circleci and available after test runs.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
LIBS_DIR=./libs/
|
|
mkdir -p $LIBS_DIR >/dev/null 2>&1
|
|
|
|
cp workspace/opentelemetry-javaagent/build/libs/*.jar $LIBS_DIR/
|
|
cp workspace/auto-exporters/*/build/libs/*.jar $LIBS_DIR/
|