Remove batch_size of bulk API from tests & refactor BWC version check #1284
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: Backwards Compatibility Tests NeuralSearch | |
on: | |
push: | |
branches: | |
- "*" | |
- "feature/**" | |
pull_request: | |
branches: | |
- "*" | |
- "feature/**" | |
jobs: | |
Restart-Upgrade-BWCTests-NeuralSearch: | |
strategy: | |
matrix: | |
java: [ 21 ] | |
os: [ubuntu-latest,windows-latest] | |
bwc_version : ["2.9.0","2.10.0","2.11.0","2.12.0","2.13.0","2.14.0","2.15.0","2.16.0-SNAPSHOT"] | |
opensearch_version : [ "3.0.0-SNAPSHOT" ] | |
name: NeuralSearch Restart-Upgrade BWC Tests | |
runs-on: ${{ matrix.os }} | |
env: | |
BWC_VERSION_RESTART_UPGRADE: ${{ matrix.bwc_version }} | |
steps: | |
- name: Checkout neural-search | |
uses: actions/checkout@v1 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Run NeuralSearch Restart-Upgrade BWC Tests from BWCVersion-${{ matrix.bwc_version }} to OpenSearch Version-${{ matrix.opensearch_version }} on ${{matrix.os}} | |
run: | | |
echo "Running restart-upgrade backwards compatibility tests ..." | |
./gradlew :qa:restart-upgrade:testAgainstNewCluster -D'tests.bwc.version=${{ matrix.bwc_version }}' | |
Rolling-Upgrade-BWCTests-NeuralSearch: | |
strategy: | |
matrix: | |
java: [ 21 ] | |
os: [ubuntu-latest,windows-latest] | |
bwc_version: [ "2.16.0-SNAPSHOT" ] | |
opensearch_version: [ "3.0.0-SNAPSHOT" ] | |
name: NeuralSearch Rolling-Upgrade BWC Tests | |
runs-on: ${{ matrix.os }} | |
env: | |
BWC_VERSION_ROLLING_UPGRADE: ${{ matrix.bwc_version }} | |
steps: | |
- name: Checkout neural-search | |
uses: actions/checkout@v1 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Run NeuralSearch Rolling-Upgrade BWC Tests from BWCVersion-${{ matrix.bwc_version }} to OpenSearch Version-${{ matrix.opensearch_version }} on ${{matrix.os}} | |
run: | | |
echo "Running rolling-upgrade backwards compatibility tests ..." | |
./gradlew :qa:rolling-upgrade:testRollingUpgrade -D'tests.bwc.version=${{ matrix.bwc_version }}' |