forked from Speiger/Primitive-Collections
Small Fixes
-Fixed: Unit Test Generator is now Silenced. Because 4k lines. -Fixed: Reverted to JavaSetupV1 for build because java14 support. -Added: Java18 support for build
This commit is contained in:
parent
fb7c417394
commit
c37746cd84
|
@ -11,18 +11,16 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
jdk: [8, 11, 14, 16, 17]
|
||||
jdk: [8, 11, 14, 16, 17, 18]
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Set up JDK ${{ matrix.jdk }}
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: ${{ matrix.jdk }}
|
||||
distribution: temurin
|
||||
cache: gradle
|
||||
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
|
||||
|
|
|
@ -79,7 +79,7 @@ task generateTestSource(type: JavaExec) {
|
|||
description = 'Builds the sourcecode for the Tests'
|
||||
classpath = sourceSets.builder.runtimeClasspath
|
||||
main = 'speiger.src.builder.PrimitiveCollectionsBuilder'
|
||||
args = ['tests']
|
||||
args = ['tests', 'silent']
|
||||
}
|
||||
|
||||
task javadocJar(type: Jar) {
|
||||
|
|
Loading…
Reference in New Issue