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
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo test --all-targets

query-e2e:
name: Deployment-usage query E2E
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- name: Install pinned Rust toolchain
run: rustup show active-toolchain || rustup toolchain install
- name: Install protoc
uses: restatedev/restate/.github/actions/install-protoc@main
- uses: Swatinem/rust-cache@v2
# These fixtures use real, digest-pinned Restate servers. Keep the query contract
# separate from the kind rollback suite: it validates external system-table semantics.
- name: Run deployment-usage query compatibility tests
run: cargo test --lib controllers::restatedeployment::e2e -- --ignored --nocapture --test-threads=1

build-image:
name: Build release Docker image
runs-on: ubuntu-latest
Expand Down
Loading
Loading