SOLR-18144: fix schema designer to auto-create .system in 9x #20730
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: Gradle Precommit | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'branch_*' | |
| jobs: | |
| test: | |
| name: gradle check w/ Java 11 | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Setup | |
| - uses: actions/checkout@v5 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 11 | |
| java-package: jdk | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-precommit-${{ hashFiles('versions.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gradle-precommit- | |
| ${{ runner.os }}-gradle- | |
| - name: Run gradle check (without tests) | |
| run: ./gradlew check -x test -Ptask.times=true | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v5 |