Migrate NodeHealthAPI: flip delegation so V2 owns logic, V1 bridges to it #21
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: Solr Script Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| paths: | |
| - '.github/workflows/bin-solr-test.yml' | |
| - 'solr/bin/**' | |
| - 'solr/packaging/**' | |
| - 'solr/core/src/java/org/apache/solr/cli/**' | |
| jobs: | |
| test: | |
| name: Run Solr Script Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 40 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - uses: ./.github/actions/prepare-for-build | |
| - name: Test the bin/solr script | |
| run: ./gradlew integrationTests | |
| - name: Archive logs | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: logs | |
| path: solr/packaging/build/test-output |