-
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.
Enable packaging tests in exhaustive pipeline (#15781)
This commit adds the packaging tests (that were refactored in #15696 to not rely on Vagrant) in a new "acceptance" group. Relates: elastic/ingest-dev#1722
- Loading branch information
Showing
3 changed files
with
83 additions
and
3 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,3 +1,2 @@ | ||
LS_BUILD_JAVA=adoptiumjdk17 | ||
LS_RUNTIME_JAVA=adoptiumjdk17 | ||
|
||
LS_BUILD_JAVA=adoptiumjdk_17 | ||
LS_RUNTIME_JAVA=adoptiumjdk_17 |