Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test:
name: "Unit tests"
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 7
continue-on-error: false
env:
JDK_VER: 17
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
build-durabletask:
name: "Durable Task build & tests"
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 7
continue-on-error: false
env:
JDK_VER: 17
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
uses: nick-fields/retry@v3
with:
max_attempts: 2
timeout_minutes: 30
timeout_minutes: 5
retry_wait_seconds: 15
command: ./mvnw -B -pl durabletask-client -Pintegration-tests dependency:copy-dependencies verify

Expand All @@ -98,7 +98,7 @@ jobs:
build:
name: "Build jdk:${{ matrix.java }} sb:${{ matrix.spring-boot-display-version }} exp:${{ matrix.experimental }}"
runs-on: ubuntu-latest
timeout-minutes: 45
timeout-minutes: 25
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
Expand All @@ -125,7 +125,7 @@ jobs:
uses: nick-fields/retry@v3
with:
max_attempts: 2
timeout_minutes: 30
timeout_minutes: 22
retry_wait_seconds: 15
command: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -pl !durabletask-client -Pintegration-tests dependency:copy-dependencies verify
- name: Upload failsafe test report for sdk-tests on failure
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
publish:
runs-on: ubuntu-latest
needs: [ build, test, build-durabletask ]
timeout-minutes: 30
timeout-minutes: 10
env:
JDK_VER: 17
OSSRH_USER_TOKEN: ${{ secrets.OSSRH_USER_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
name: "Validate Javadocs generation"
runs-on: oracle-vm-4cpu-16gb-arm64
timeout-minutes: 60
timeout-minutes: 6
env:
JDK_VER: 17
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ on:
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
Expand Down Expand Up @@ -117,7 +118,7 @@ jobs:
uses: nick-fields/retry@v3
with:
max_attempts: 2
timeout_minutes: 30
timeout_minutes: 17
retry_wait_seconds: 10
command: |
set -e
Expand Down
Loading