Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-add the complete test matrix.
Browse files Browse the repository at this point in the history
Signed-off-by: dblock <[email protected]>
dblock committed Apr 25, 2022
1 parent cbbe7a3 commit bad7dcf
Showing 2 changed files with 15 additions and 14 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/test-integration-unreleased.yml
Original file line number Diff line number Diff line change
@@ -18,10 +18,11 @@ jobs:
fail-fast: false
matrix:
entry:
# - { ref: '1.x', java: 11 }
# - { ref: '2.x', java: 11 }
- { ref: '2.0', java: 11 }
# - { ref: 'main', java: 11 }
- { opensearch_ref: '1.x', java: 11 }
- { opensearch_ref: '2.x', java: 11 }
- { opensearch_ref: '2.x', java: 17 }
- { opensearch_ref: '2.0', java: 11 }
- { opensearch_ref: 'main', java: 11 }
steps:
- name: Set up JDK ${{ matrix.entry.java }}
uses: actions/setup-java@v1
@@ -32,7 +33,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: opensearch-project/OpenSearch
ref: ${{ matrix.entry.ref }}
ref: ${{ matrix.entry.opensearch_ref }}
path: opensearch

- name: Assemble OpenSearch
@@ -41,7 +42,7 @@ jobs:
./gradlew assemble
# This step runs the docker image generated during gradle assemble in OpenSearch. It is tagged as opensearch:test.
# Reference: https://github.com/opensearch-project/OpenSearch/blob/2.0/distribution/docker/build.gradle#L190
# opensearch_Reference: https://github.com/opensearch-project/OpenSearch/blob/2.0/distribution/docker/build.gradle#L190
- name: Run Docker Image
run: |
docker run -p 9200:9200 -p 9600:9600 -d -e "discovery.type=single-node" -e "bootstrap.memory_lock=true" opensearch:test
16 changes: 8 additions & 8 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
@@ -15,14 +15,14 @@ jobs:
fail-fast: false
matrix:
entry:
# - { opensearch_version: 1.0.0, java: 11 }
# - { opensearch_version: 1.0.1, java: 11 }
# - { opensearch_version: 1.1.0, java: 11 }
# - { opensearch_version: 1.2.0, java: 11 }
# - { opensearch_version: 1.2.1, java: 11 }
# - { opensearch_version: 1.2.2, java: 11 }
# - { opensearch_version: 1.2.3, java: 11 }
# - { opensearch_version: 1.2.4, java: 11 }
- { opensearch_version: 1.0.0, java: 11 }
- { opensearch_version: 1.0.1, java: 11 }
- { opensearch_version: 1.1.0, java: 11 }
- { opensearch_version: 1.2.0, java: 11 }
- { opensearch_version: 1.2.1, java: 11 }
- { opensearch_version: 1.2.2, java: 11 }
- { opensearch_version: 1.2.3, java: 11 }
- { opensearch_version: 1.2.4, java: 11 }
- { opensearch_version: 1.3.0, java: 11 }
steps:
- name: Set up JDK ${{ matrix.java }}

0 comments on commit bad7dcf

Please sign in to comment.