aboutsummaryrefslogtreecommitdiffstats
path: root/.buildkite/bootstrap.sh
blob: d00391709ecaeecc62e9148c4a926fee72845c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -euo pipefail

cd "$SOURCE_DIR"
./bootstrap.sh full

mkdir -p "$VESPA_CPP_TEST_JARS"

# shellcheck disable=2038
find . -type d -name target -exec find {} -mindepth 1 -maxdepth 1 -name "*.jar" \; | xargs -I '{}' cp '{}' "$VESPA_CPP_TEST_JARS"