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
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install CI deps
run: bash integration/ci/install-deps.sh
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 5
command: bash integration/ci/install-deps.sh
# Compute the binary key before restoring rust-cache: rust-cache restores
# target/ build outputs that would otherwise change the key. Use the
# split cache actions so pgdog binaries are saved immediately after the
Expand Down Expand Up @@ -120,7 +125,12 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install CI deps
run: bash integration/ci/install-deps.sh
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 5
command: bash integration/ci/install-deps.sh
- name: Compute cache key
id: cache-key
run: echo "key=pgdog-bin-${{ runner.os }}-coverage-$(bash integration/ci/cache-key.sh)" >> "$GITHUB_OUTPUT"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install CI deps
run: bash integration/ci/install-deps.sh
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 5
command: bash integration/ci/install-deps.sh
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install CI deps
run: bash integration/ci/install-deps.sh
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 5
command: bash integration/ci/install-deps.sh
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "plugin-unit-v1"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install CI deps
run: bash integration/ci/install-deps.sh
uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 5
command: bash integration/ci/install-deps.sh
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "v1" # Change this when updating tooling
Expand Down
Loading