Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitlab/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
- when: on_success
script:
- export ARTIFACTS_DIR="$(pwd)/reports" && mkdir -p "${ARTIFACTS_DIR}"
# Install authanywhere at runtime for internal API authentication in benchmarking-platform:
# https://github.com/DataDog/benchmarking-platform/blob/dd-trace-java/tracer-benchmarks-parallel/steps/fetch-artifacts.sh
- |
if [ $(uname -m) = x86_64 ]; then AAA="amd64"; else AAA="arm64"; fi
wget -q -O /tmp/authanywhere "https://binaries.ddbuild.io/dd-source/authanywhere/LATEST/authanywhere-linux-${AAA}"
chmod +x /tmp/authanywhere
mv /tmp/authanywhere /usr/local/bin/authanywhere
echo "Installed authanywhere: $(which authanywhere)"
- git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.ddbuild.io/DataDog/".insteadOf "https://github.com/DataDog/"
- git clone --branch dd-trace-java/tracer-benchmarks-parallel https://github.com/DataDog/benchmarking-platform.git /platform && cd /platform
artifacts:
Expand Down
Loading