diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index ec4ee83cf497..94c5320e987c 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -59,18 +59,8 @@ jobs: - name: Build with Gradle run: | - ./gradlew --no-daemon --stacktrace clean build \ - ${{ (matrix.on == 'self-hosted') && '--max-workers=8' || '--max-workers=2' }} --parallel \ - ${{ matrix.coverage && '-Pcoverage' || '' }} \ - ${{ matrix.leak && '-Pleak' || '' }} \ - ${{ matrix.blockhound && '-Pblockhound' || '' }} \ - -Dscan.tag.exp5 \ - -PflakyTests=false \ - -Pretry=true \ - -PbuildJdkVersion=${{ env.BUILD_JDK_VERSION }} \ - -PtestJavaVersion=${{ matrix.java }} \ - ${{ matrix.min-java && format('-PminimumJavaVersion={0}', matrix.min-java) || '' }} \ - -Porg.gradle.java.installations.paths=${{ steps.setup-build-jdk.outputs.path }},${{ steps.setup-jdk.outputs.path }} + ./gradlew --no-daemon --stacktrace clean build --parallel \ + -Dscan.tag.exp5 shell: bash - if: ${{ matrix.snapshot && github.ref_name == 'main' }}