-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Increment version to 1.2.1. Signed-off-by: dblock <[email protected]> * Move Gradle wrapper and precommit checks into OpenSearch repo. (#1664) * Move Gradle checks into OpenSearch repo. Signed-off-by: dblock <[email protected]> * Use working-directory for gradle wrapper validation. Signed-off-by: dblock <[email protected]> * Use https://github.com/gradle/wrapper-validation-action. Signed-off-by: dblock <[email protected]> * Use Java 14. Signed-off-by: dblock <[email protected]>
- Loading branch information
Showing
5 changed files
with
30 additions
and
2 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 |
---|---|---|
|
@@ -78,3 +78,4 @@ BWC_VERSION: | |
- "1.0.1" | ||
- "1.1.0" | ||
- "1.1.1" | ||
- "1.2.0" |
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,16 @@ | ||
name: Gradle Precommit | ||
on: [pull_request] | ||
|
||
jobs: | ||
precommit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 14 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 14 | ||
distribution: adopt | ||
- name: Run Gradle | ||
run: | | ||
./gradlew precommit --parallel |
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,10 @@ | ||
name: Validate Gradle Wrapper | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
validate: | ||
name: Validate | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gradle/wrapper-validation-action@v1 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
opensearch = 1.2.0 | ||
opensearch = 1.2.1 | ||
lucene = 8.10.1 | ||
|
||
bundled_jdk_vendor = adoptopenjdk | ||
|
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