forked from apache/solr
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding solr tests to precommit checks (#52)
* Adding solr core and solrj tests to precommit checks * Updating to run tests as separate step * Fixing solr test name * Adding submodule checkout * Running all tests * Running all tests
- Loading branch information
Justin Sweeney
authored
Dec 15, 2022
1 parent
a1e82a4
commit b77737f
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Solr Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
test: | ||
name: Run Solr Tests | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Setup | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- 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-solrj-${{ hashFiles('versions.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle-solrj- | ||
${{ runner.os }}-gradle- | ||
- name: Initialize gradle settings | ||
run: ./gradlew localSettings | ||
- name: Test Solr | ||
run: ./gradlew test |