bin/solr in branch_9_7 has commands that fail #1075
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: Solr Script Tests | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
- 'branch_*' | |
paths: | |
- '.github/workflows/bin-solr-test.yml' | |
- 'solr/bin/**' | |
- 'solr/packaging/**' | |
- 'solr/core/src/java/org/apache/solr/cli/**' | |
- 'solr/prometheus-exporter/**' | |
jobs: | |
test: | |
name: Run Solr Script Tests | |
runs-on: ubuntu-latest | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} | |
steps: | |
# Setup | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
java-package: jdk | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
key: ${{ runner.os }}-gradle-binsolr-${{ hashFiles('versions.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gradle-binsolr- | |
${{ runner.os }}-gradle- | |
- name: Test the bin/solr script | |
run: ./gradlew integrationTests | |
- name: Archive logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: logs | |
path: solr/packaging/build/test-output |