diff --git a/.github/workflows/build_action.yml b/.github/workflows/build_action.yml index e991c571..10110056 100644 --- a/.github/workflows/build_action.yml +++ b/.github/workflows/build_action.yml @@ -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 diff --git a/build.gradle b/build.gradle index 64a961d4..c848ad5b 100644 --- a/build.gradle +++ b/build.gradle @@ -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) {