Fix closed-index reroute handling - Shard routings for closed index are allocated again without opening the index #50277
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: Gradle Precommit | |
| on: [pull_request] | |
| jobs: | |
| precommit: | |
| if: github.repository == 'opensearch-project/OpenSearch' | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| java: [ 21, 25 ] | |
| os: [ubuntu-latest, windows-latest, macos-15, macos-15-intel, ubuntu-24.04-arm] | |
| include: | |
| - java: 21 | |
| os: 'windows-2025' | |
| experimental: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: temurin | |
| cache: gradle | |
| - name: Run Gradle (precommit) | |
| continue-on-error: ${{ matrix.experimental }} | |
| shell: bash | |
| run: | | |
| ./gradlew javadoc precommit --parallel |