mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This commit is the follow up PR after #15466, which migrates away the remaining aarch64 acceptance test Jenkins jobs to Buildkite. Relates: - #15466 - https://github.com/elastic/ingest-dev/issues/1724
12 lines
457 B
Bash
12 lines
457 B
Bash
#!/usr/bin/env bash
|
|
|
|
# ********************************************************
|
|
# This file contains prerequisite bootstrap invocations
|
|
# required for Logstash CI when using VM/baremetal agents
|
|
# ********************************************************
|
|
|
|
set -euo pipefail
|
|
|
|
export PATH="/opt/buildkite-agent/.rbenv/bin:/opt/buildkite-agent/.pyenv/bin:/opt/buildkite-agent/.java/bin:$PATH"
|
|
export JAVA_HOME="/opt/buildkite-agent/.java"
|
|
eval "$(rbenv init -)"
|