build: add windows host for build tests

This commit is contained in:
Skylot
2023-08-01 18:44:53 +01:00
parent 95db98e574
commit 868e99e0b5
5 changed files with 117 additions and 95 deletions
@@ -1,3 +1,5 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
plugins {
java
checkstyle
@@ -46,6 +48,10 @@ tasks {
test {
useJUnitPlatform()
maxParallelForks = Runtime.getRuntime().availableProcessors()
testLogging.showExceptions = true
testLogging {
showExceptions = true
exceptionFormat = TestExceptionFormat.FULL
showCauses = true
}
}
}