Skip to content
Merged
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
25 changes: 21 additions & 4 deletions .github/workflows/ci_test_go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,31 @@ jobs:

- name: Setup Docker
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
uses: douglascamata/setup-docker-macos-action@v1.1.0
uses: Wandalen/wretry.action@v3
with:
action: docker/setup-docker-action@v5
attempt_limit: 3
attempt_delay: 30000

- name: Pre-pull DynamoDB Local image with retry
if: matrix.library == 'TestVectors'
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 30
command: docker pull amazon/dynamodb-local:latest

- name: Setup DynamoDB Local
if: matrix.library == 'TestVectors'
uses: rrainn/dynamodb-action@v4.0.0
uses: Wandalen/wretry.action@v3
with:
port: 8000
cors: "*"
action: rrainn/dynamodb-action@v4.0.0
attempt_limit: 3
attempt_delay: 30000
with: |
port: 8000
cors: "*"

- name: Support longpaths
run: |
Expand Down
17 changes: 13 additions & 4 deletions .github/workflows/ci_test_vector_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,31 @@ jobs:

- name: Setup Docker
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
uses: douglascamata/setup-docker-macos-action@v1.1.0
uses: Wandalen/wretry.action@v3
with:
action: docker/setup-docker-action@v5
attempt_limit: 3
attempt_delay: 30000

- name: Pre-pull DynamoDB Local image with retry
if: matrix.library == 'TestVectors'
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 30
command: docker pull amazon/dynamodb-local:latest

- name: Setup DynamoDB Local
if: matrix.library == 'TestVectors'
uses: rrainn/dynamodb-action@v4.0.0
uses: Wandalen/wretry.action@v3
with:
port: 8000
cors: "*"
action: rrainn/dynamodb-action@v4.0.0
attempt_limit: 3
attempt_delay: 30000
with: |
port: 8000
cors: "*"

- uses: actions/checkout@v6
with:
Expand Down
25 changes: 21 additions & 4 deletions .github/workflows/ci_test_vector_net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,31 @@ jobs:

- name: Setup Docker
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
uses: douglascamata/setup-docker-macos-action@v1.1.0
uses: Wandalen/wretry.action@v3
with:
action: docker/setup-docker-action@v5
attempt_limit: 3
attempt_delay: 30000

- name: Pre-pull DynamoDB Local image with retry
if: matrix.library == 'TestVectors'
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 30
command: docker pull amazon/dynamodb-local:latest

- name: Setup DynamoDB Local
if: matrix.library == 'TestVectors'
uses: rrainn/dynamodb-action@v4.0.0
uses: Wandalen/wretry.action@v3
with:
port: 8000
cors: "*"
action: rrainn/dynamodb-action@v4.0.0
attempt_limit: 3
attempt_delay: 30000
with: |
port: 8000
cors: "*"

- uses: actions/checkout@v6
with:
Expand Down
25 changes: 21 additions & 4 deletions .github/workflows/library_rust_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,31 @@ jobs:

- name: Setup Docker
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
uses: douglascamata/setup-docker-macos-action@v1.1.0
uses: Wandalen/wretry.action@v3
with:
action: docker/setup-docker-action@v5
attempt_limit: 3
attempt_delay: 30000

- name: Pre-pull DynamoDB Local image with retry
if: matrix.library == 'TestVectors'
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 30
command: docker pull amazon/dynamodb-local:latest

- name: Setup DynamoDB Local
if: matrix.library == 'TestVectors'
uses: rrainn/dynamodb-action@v4.0.0
uses: Wandalen/wretry.action@v3
with:
port: 8000
cors: "*"
action: rrainn/dynamodb-action@v4.0.0
attempt_limit: 3
attempt_delay: 30000
with: |
port: 8000
cors: "*"

- name: Support longpaths on Git checkout
run: |
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/performance-benchmarks-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ jobs:
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-DDBEC-Dafny-Role-us-west-2
role-session-name: DDBEC-Dafny-Rust-Tests

- name: Setup Docker
if: matrix.os == 'macos-15-intel' && matrix.library == 'TestVectors'
uses: douglascamata/setup-docker-macos-action@v1.1.0

- name: Support longpaths on Git checkout
run: |
git config --global core.longpaths true
Expand Down
Loading