mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This commit adds the packaging tests (that were refactored in #15696 to not rely on Vagrant) in a new "acceptance" group. Relates: https://github.com/elastic/ingest-dev/issues/1722
16 lines
577 B
Bash
16 lines
577 B
Bash
#!/usr/bin/env bash
|
|
|
|
# **************************************************************
|
|
# This file contains prerequisite bootstrap invocations
|
|
# required for Logstash CI when using custom multi-jdk VM images
|
|
# It is primarily used by the exhaustive BK pipeline.
|
|
# **************************************************************
|
|
|
|
set -euo pipefail
|
|
|
|
source .ci/java-versions.properties
|
|
export BUILD_JAVA_HOME=/opt/buildkite-agent/.java/$LS_BUILD_JAVA
|
|
|
|
export PATH="/opt/buildkite-agent/.rbenv/bin:/opt/buildkite-agent/.pyenv/bin:$BUILD_JAVA_HOME/bin:$PATH"
|
|
|
|
eval "$(rbenv init -)"
|