mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This commit is the first part of migrating away the aarch64 Jenkins
jobs to Buildkite. It adds a group of exhaustive test steps in the
aarch64 pipeline.
The java unit tests are temporarily disabled as they run SonarQube
scans which need to be associated with pull requests.
Relates:
https://github.com/elastic/ingest-dev/issues/1724
(cherry picked from commit 36656de4f0
)
Co-authored-by: Dimitrios Liappis <dimitrios.liappis@gmail.com>
11 lines
380 B
Bash
11 lines
380 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:$PATH"
|
|
eval "$(rbenv init -)"
|