Fix get index settings API doesn't show number_of_routing_shards when it was explicitly set on index creation #35650
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: Gradle Precommit | |
on: [pull_request] | |
jobs: | |
precommit: | |
if: github.repository == 'opensearch-project/OpenSearch' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [ 11, 17, 21, 23 ] | |
os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
cache: gradle | |
- name: Set up JDK 17 | |
# See please https://docs.gradle.org/8.10/userguide/upgrading_version_8.html#minimum_daemon_jvm_version | |
if: matrix.java == 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set JAVA${{ matrix.java }}_HOME | |
shell: bash | |
run: | | |
echo "JAVA${{ matrix.java }}_HOME=$JAVA_HOME_${{ matrix.java }}_${{ runner.arch }}" >> $GITHUB_ENV | |
- name: Run Gradle (precommit) | |
shell: bash | |
run: | | |
./gradlew javadoc precommit --parallel -Druntime.java=${{ matrix.java }} |