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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [warp-ubuntu-latest-x64-4x]
env:
RUST_BACKTRACE: full
steps:
Expand All @@ -30,6 +30,12 @@ jobs:
with:
components: clippy
rustflags: ""
cache: false

- name: Setup Rust Caching
uses: WarpBuilds/rust-cache@v2
with:
cache-on-failure: "true"

- name: Install nextest
uses: taiki-e/install-action@nextest
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:
jobs:
sdk-test-suite:
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
runs-on: warp-ubuntu-latest-x64-4x
name: Features integration test
permissions:
contents: read
Expand Down Expand Up @@ -91,6 +91,9 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
network=host

- name: Build Rust test-services image
id: build
Expand All @@ -101,8 +104,8 @@ jobs:
push: false
load: true
tags: restatedev/rust-test-services
cache-from: type=gha,scope=${{ github.workflow }}
cache-to: type=gha,mode=max,scope=${{ github.workflow }}
cache-from: type=gha,url=http://127.0.0.1:49160/,version=1,scope=${{ github.workflow }}
cache-to: type=gha,url=http://127.0.0.1:49160/,mode=max,version=1,scope=${{ github.workflow }}

- name: Run test tool
uses: restatedev/sdk-test-suite@v3.4
Expand Down
Loading