Skip to content

Commit

Permalink
triple all timeouts in the TCK, when running on Mac, to account for s…
Browse files Browse the repository at this point in the history
…low CI machines
  • Loading branch information
Ladicek committed May 12, 2021
1 parent 3c844b8 commit 8d4f4f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8d4f4f2

Please sign in to comment.