-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing everything to use gradle build action
- Loading branch information
1 parent
8a86144
commit dc59831
Showing
3 changed files
with
14 additions
and
9 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
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 |
---|---|---|
|
@@ -76,8 +76,10 @@ jobs: | |
|
||
# Include --stacktrace to make some build failures easier to figure out. | ||
- name: Build with Gradle | ||
working-directory: mekhq | ||
run: ./gradlew -I .github/build-scan-init.gradle build -x test --continue --stacktrace --scan | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: clean build -x test --continue --stacktrace --scan | ||
build-root-directory: mekhq | ||
|
||
- name: Upload Test Logs on Failure | ||
uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -67,9 +67,11 @@ jobs: | |
if: runner.os != 'Windows' | ||
|
||
# Include --stacktrace to make some build failures easier to figure out. | ||
- name: Build with Gradle | ||
working-directory: mekhq | ||
run: ./gradlew -I .github/build-scan-init.gradle build --continue --stacktrace --scan | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: clean build --continue --stacktrace --scan | ||
build-root-directory: mekhq | ||
|
||
- name: Upload Test Logs on Failure | ||
uses: actions/[email protected] | ||
|