From 8d4f4f2b899291466621247d774095bac734f06e Mon Sep 17 00:00:00 2001 From: Ladislav Thon Date: Tue, 11 May 2021 17:19:47 +0200 Subject: [PATCH] triple all timeouts in the TCK, when running on Mac, to account for slow CI machines --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 63df2999..1bbdb921 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,10 +55,16 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - - name: Build with Maven + - name: Build with Maven (Linux, Windows) + if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' }} shell: bash run: mvn -B formatter:validate verify --file pom.xml + - name: Build with Maven (Mac) + if: ${{ matrix.os == 'macos-latest' }} + shell: bash + run: mvn -B formatter:validate verify --file pom.xml -Dorg.eclipse.microprofile.fault.tolerance.tck.timeout.multiplier=3.0 + - name: Upload TCK report if: ${{ matrix.java == '11' && matrix.os == 'ubuntu-latest' }} uses: actions/upload-artifact@v2