Implement enum parsing #855
Workflow file for this run
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
name: Integration tests | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: {} | |
env: | |
OPENSEARCH_PLUGINS_DIRECTORY: /tmp/opensearch-plugins | |
jobs: | |
integration-opensearch: | |
name: Integration OpenSearch | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 2.16.0 | |
- 2.14.0 | |
- 2.12.0 | |
- 2.10.0 | |
- 2.8.0 | |
- 2.6.0 | |
- 2.4.1 | |
- 2.2.1 | |
- 2.0.1 | |
- 1.3.14 | |
- 1.2.4 | |
- 1.1.0 | |
steps: | |
- name: Checkout Client | |
uses: actions/checkout@v4 | |
with: | |
path: client | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
5.0.x | |
6.0.x | |
8.0.x | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.?sproj') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- run: "./build.sh integrate $VERSION readonly,multinode,writable random:test_only_one --report" | |
name: Integration Tests | |
working-directory: client | |
env: | |
VERSION: ${{ matrix.version }} | |
# Run neural query integration tests separately as they use a significant amount of memory on their own | |
- run: "./build.sh integrate ${{ matrix.version }} neuralquery random:test_only_one --report" | |
name: Neural Query Integration Tests | |
working-directory: client | |
- name: Upload test report | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-${{ matrix.version }} | |
path: client/build/output/* | |
integration-opensearch-unreleased: | |
name: Integration OpenSearch Unreleased | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { opensearch_ref: '1.x', java_version: '11' } | |
- { opensearch_ref: '2.x', java_version: '17' } | |
- { opensearch_ref: 'main', java_version: '21' } | |
steps: | |
- name: Checkout Client | |
uses: actions/checkout@v4 | |
with: | |
path: client | |
# k-NN build requires git user to be set | |
- name: Setup git user | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
5.0.x | |
6.0.x | |
8.0.x | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.?sproj') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java_version }} | |
- name: Restore or Build OpenSearch | |
id: opensearch | |
uses: ./client/.github/actions/build-opensearch | |
with: | |
ref: ${{ matrix.opensearch_ref }} | |
security_plugin: ${{ matrix.opensearch_ref == '1.x' }} | |
knn_plugin: true | |
plugins_output_directory: ${{ env.OPENSEARCH_PLUGINS_DIRECTORY }} | |
- run: "./build.sh integrate $OPENSEARCH_VERSION readonly,multinode,writable random:test_only_one --report" | |
name: Integration Tests | |
working-directory: client | |
env: | |
OPENSEARCH_VERSION: ${{ steps.opensearch.outputs.version }} | |
OPENSEARCH_DISTRIBUTION: ${{ steps.opensearch.outputs.distribution }} | |
- name: Upload test report | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-unreleased-${{ matrix.opensearch_ref }} | |
path: client/build/output/* |