[Hybrid Query] Gate collapse distinct-groups collection behind an opt-in index setting #5238
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: Run Additional Tests for Neural Search | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # every night | |
| push: | |
| branches: | |
| - "*" | |
| - "feature/**" | |
| pull_request: | |
| branches: | |
| - "*" | |
| - "feature/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| Get-CI-Image-Tag: | |
| uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main | |
| with: | |
| product: opensearch | |
| Check-neural-search-linux: | |
| needs: Get-CI-Image-Tag | |
| strategy: | |
| matrix: | |
| java: [21, 25] | |
| os: [ubuntu-latest] | |
| name: Integ Tests Linux | |
| runs-on: ${{ matrix.os }} | |
| container: | |
| # using the same image which is used by opensearch-build team to build the OpenSearch Distribution | |
| # this image tag is subject to change as more dependencies and updates will arrive over time | |
| image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} | |
| # need to switch to root so that github actions can install runner binary on container without permission issues. | |
| options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }} | |
| steps: | |
| - name: Run start commands | |
| run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }} | |
| - name: Checkout neural-search | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| # integTest builds the JNI library, which needs the | |
| # jni/external/neural-sparse-cpp submodule | |
| submodules: recursive | |
| - name: Setup Java ${{ matrix.java }} | |
| uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| cache: 'gradle' | |
| - name: Run tests | |
| run: | | |
| chown -R 1000:1000 `pwd` | |
| su `id -un 1000` -c "./gradlew ':integTest' --parallel -Dtest_aggs=true --tests \"org.opensearch.neuralsearch.query.aggregation.*IT\"" | |
| Check-neural-search-windows: | |
| strategy: | |
| matrix: | |
| java: [25] | |
| os: [windows-latest] | |
| name: Integ Tests Windows | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout neural-search | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| # integTest builds the JNI library, which needs the | |
| # jni/external/neural-sparse-cpp submodule | |
| submodules: recursive | |
| - name: Setup Java ${{ matrix.java }} | |
| uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| cache: 'gradle' | |
| - name: Run tests | |
| run: | | |
| ./gradlew ':integTest' --parallel -Dtest_aggs=true --tests "org.opensearch.neuralsearch.query.aggregation.*IT" |