Skip to content

Commit

Permalink
Bump up Gradle to v8 (#852)
Browse files Browse the repository at this point in the history
* ci: bump up Gradle version to run test

Signed-off-by: Kengo TODA <skypencil@gmail.com>

* build: bump up gradle to v8.0

Signed-off-by: Kengo TODA <skypencil@gmail.com>

* test: remove duplicated configurations

Signed-off-by: Kengo TODA <skypencil@gmail.com>

* Revert "build: bump up gradle to v8.0"

This reverts commit 3297e72.

---------

Signed-off-by: Kengo TODA <skypencil@gmail.com>
  • Loading branch information
KengoTODA committed Feb 20, 2023
1 parent 15c9f00 commit 06978f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
gradle: ['7.0', '7.6']
gradle: ['7.0', '8.0']
steps:
- uses: actions/checkout@v3
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies {

testing {
suites {
@Suppress("UNUSED_VARIABLE")
val test by getting(JvmTestSuite::class) {
useJUnitJupiter()
dependencies {
Expand All @@ -30,6 +31,7 @@ testing {
}
}
}
@Suppress("UNUSED_VARIABLE")
val functionalTest by registering(JvmTestSuite::class) {
useSpock()
testType.set(TestSuiteType.FUNCTIONAL_TEST)
Expand Down Expand Up @@ -65,10 +67,6 @@ sonarqube {
}

tasks {
withType<Test> {
useJUnitPlatform()
maxParallelForks = Runtime.getRuntime().availableProcessors()
}
named("sonarqube") {
mustRunAfter(jacocoTestReport)
}
Expand Down

0 comments on commit 06978f9

Please sign in to comment.