Fix integration tests with unreleased versions of OpenSearch. (#798)

Signed-off-by: dblock <dblock@amazon.com>
This commit is contained in:
Daniel (dB.) Doubrovkine
2024-08-15 11:21:11 -04:00
committed by GitHub
parent 377a7f41d1
commit 6382c1570c
+8 -5
View File
@@ -8,14 +8,17 @@ jobs:
strategy:
fail-fast: false
matrix:
opensearch_ref: [ '1.x', '2.x', 'main' ]
entry:
- { branch: "1.x", java-version: "11" }
- { branch: "2.x", java-version: "17" }
- { branch: "main", java-version: "17" }
steps:
- name: Checkout OpenSearch
uses: actions/checkout@v4
with:
repository: opensearch-project/opensearch
ref: ${{ matrix.opensearch_ref }}
ref: ${{ matrix.entry.branch }}
path: opensearch
- name: Get OpenSearch branch top
@@ -32,8 +35,8 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '11'
distribution: "temurin"
java-version: ${{ matrix.entry.java-version }}
- name: Assemble OpenSearch
if: steps.cache-restore.outputs.cache-hit != 'true'