[AUTO] Increment version to 3.3.1-SNAPSHOT #2168
Workflow file for this run
  
    
      This file contains hidden or 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: BWC | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - 'whitesource-remediate/**' | |
| - 'backport/**' | |
| - 'create-pull-request/**' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| Build-ff-linux: | |
| strategy: | |
| matrix: | |
| java: [21] | |
| fail-fast: false | |
| name: Test Flow Framework BWC | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Java ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Checkout Flow Framework | |
| uses: actions/checkout@v4 | |
| - name: Assemble Flow Framework | |
| run: | | |
| plugin_version=`./gradlew properties -q | grep "opensearch_build:" | awk '{print $2}'` | |
| echo plugin_version $plugin_version | |
| ./gradlew assemble | |
| echo "Creating ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version ..." | |
| mkdir -p ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version | |
| echo "Copying ./build/distributions/*.zip to ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version ..." | |
| ls ./build/distributions/ | |
| cp ./build/distributions/*.zip ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version | |
| echo "Copied ./build/distributions/*.zip to ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version ..." | |
| ls ./src/test/resources/org/opensearch/flowframework/bwc/flow-framework/$plugin_version | |
| - name: Run Flow Framework Backwards Compatibility Tests | |
| run: | | |
| echo "Running backwards compatibility tests ..." | |
| ./gradlew bwcTestSuite -Dtests.security.manager=false |