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
9 changes: 8 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jobs:
libcurl4-openssl-dev \
pkg-config \
libsasl2-dev \
protobuf-compiler
protobuf-compiler \
libprotobuf-dev

- name: Cache Cargo
uses: Swatinem/rust-cache@v2
Expand All @@ -67,6 +68,12 @@ jobs:
- name: Run Integration Tests
run: make integration-test

- name: Install cargo-sweep
run: cargo install cargo-sweep --locked

- name: Prune stale Cargo artifacts
run: cargo sweep -t 7

- name: Upload Test Logs
if: failure()
uses: actions/upload-artifact@v4
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/verify-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
build-and-package:
name: Build & Dist Check
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 120

steps:
- name: Checkout Source
Expand All @@ -52,7 +52,8 @@ jobs:
libcurl4-openssl-dev \
pkg-config \
libsasl2-dev \
protobuf-compiler
protobuf-compiler \
libprotobuf-dev

- name: Cache Cargo
uses: Swatinem/rust-cache@v2
Expand All @@ -78,6 +79,12 @@ jobs:
- name: Build & Package (Lite)
run: make dist-lite

- name: Install cargo-sweep
run: cargo install cargo-sweep --locked

- name: Prune stale Cargo artifacts
run: cargo sweep -t 7

- name: Verify Artifacts
run: |
ls -lh dist/*.tar.gz dist/*.zip
Expand Down
Loading
Loading