-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This commit adds the packaging tests (that were refactored in #15754 to not rely on Vagrant) in a new "acceptance" group. One difference from #15781 is that we use ubuntu 2004 for building packages (as done in DRA/7.17) due to jruby/jruby#7611 (comment) Relates: elastic/ingest-dev#1722 (cherry picked from commit 16c4d88)
- Loading branch information
Showing
3 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/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 -)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LS_BUILD_JAVA=adoptopenjdk11 | ||
LS_RUNTIME_JAVA=adoptopenjdk11 | ||
LS_BUILD_JAVA=adoptopenjdk_11 | ||
LS_RUNTIME_JAVA=adoptopenjdk_11 |