-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 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 |
---|---|---|
|
@@ -50,6 +50,8 @@ jobs: | |
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Setup Gradle | ||
uses: gradle/[email protected] | ||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
#- name: Autobuild | ||
|
@@ -66,7 +68,7 @@ jobs: | |
# make bootstrap | ||
# make release | ||
- run: | | ||
mvn clean install | ||
./gradlew build --scan | ||
- name: Perform CodeQL Analysis | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
- name: Setup Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
generate-job-summary: 'on-failure' # Valid values are 'always' (default), 'never', and 'on-failure' | ||
generate-job-summary: 'true' # Valid values are 'always' (default), 'never', and 'on-failure' | ||
dependency-graph: generate | ||
- name: Execute Gradle build | ||
run: ./gradlew build --scan | ||
|