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
7 changes: 5 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
build-node-services-docker-image:
runs-on: ubuntu-latest
runs-on: warp-ubuntu-latest-x64-4x
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -24,7 +24,10 @@ jobs:
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
network=host

- name: Log into GitHub container registry
uses: docker/login-action@v2
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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 @@ -109,6 +109,9 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
network=host

# Pre-emptively pull the test-services image, to avoid affecting execution time
- name: Pull test services image
Expand All @@ -126,8 +129,8 @@ jobs:
push: false
load: true
tags: restatedev/typescript-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 }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know what this thing is? but I trust you've checked this, and that make sense.

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@v4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
runs-on: warp-ubuntu-latest-x64-4x
strategy:
matrix:
node-version: [20.x]
Expand Down
Loading