Fix enum parsing #479
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: YAML Tests | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: {} | |
jobs: | |
test-yaml: | |
name: YAML Tests (Released 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- | |
- name: Run OpenSearch | |
id: opensearch | |
uses: ./client/.github/actions/run-released-opensearch | |
with: | |
version: ${{ matrix.version }} | |
secured: true | |
- name: Run YAML tests | |
working-directory: client | |
run: | | |
dotnet run \ | |
--project ./tests/Tests.YamlRunner/Tests.YamlRunner.fsproj \ | |
-- \ | |
--endpoint $OPENSEARCH_URL \ | |
--auth-cert ./.ci/certs/kirk.p12 \ | |
--auth-cert-pass kirk \ | |
--junit-output-file ./test-results.xml | |
env: | |
OPENSEARCH_URL: ${{ steps.opensearch.outputs.opensearch_url }} | |
- name: Save OpenSearch logs | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: opensearch-logs-${{ matrix.version }} | |
path: | | |
opensearch-*/logs/* | |
- name: Upload test report | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-yaml-${{ matrix.version }} | |
path: client/test-results.xml | |
test-yaml-unreleased: | |
name: YAML Tests (Unreleased OpenSearch) | |
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 | |
- 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_build | |
uses: ./client/.github/actions/build-opensearch | |
with: | |
ref: ${{ matrix.opensearch_ref }} | |
security_plugin: true | |
- name: Unpack OpenSearch | |
run: | | |
tar -xzf "$DISTRIBUTION" \ | |
&& ./opensearch-*/bin/opensearch-plugin install --batch file://$(realpath ./opensearch-security/build/distributions/opensearch-security-*-SNAPSHOT.zip) | |
env: | |
DISTRIBUTION: ${{ steps.opensearch_build.outputs.distribution }} | |
- name: Start OpenSearch | |
id: opensearch | |
uses: ./client/.github/actions/start-opensearch | |
with: | |
secured: true | |
- name: Run YAML tests | |
working-directory: client | |
run: | | |
dotnet run \ | |
--project ./tests/Tests.YamlRunner/Tests.YamlRunner.fsproj \ | |
-- \ | |
--endpoint $OPENSEARCH_URL \ | |
--auth-cert ./.ci/certs/kirk.p12 \ | |
--auth-cert-pass kirk \ | |
--junit-output-file ./test-results.xml | |
env: | |
OPENSEARCH_URL: ${{ steps.opensearch.outputs.opensearch_url }} | |
ADMIN_PASS: ${{ steps.opensearch.outputs.admin_password }} | |
- name: Save OpenSearch logs | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: opensearch-logs-${{ matrix.opensearch_ref }} | |
path: | | |
opensearch-*/logs/* | |
- name: Upload test report | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: report-yaml-unreleased-${{ matrix.opensearch_ref }} | |
path: client/test-results.xml |