SOLR-18008: Remnant core files prevent Collections for working #2874
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: 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 | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.SOLR_DEVELOCITY_ACCESS_KEY }} | |
| 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@v4 | |
| with: | |
| name: logs | |
| path: solr/packaging/build/test-output |