Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/rpc-parity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ on:
jobs:
rpc-parity:
name: RPC parity tests
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-24.04

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

You need to revive some parts of #5892 as well.

Additionally, we need to understand why this is happening in the first place. It's not very logical. Could you please create a tracking issue?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Right now, we are just checking if this really resolves the issue.

But I will create a detailed issue for this to👍

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

Done.

steps:
- name: Relocate docker volumes folder
run: |
# move docker volumes folder to under `/mnt` which has 60GB+ free space
sudo ls /var/lib/docker/volumes
sudo mv /var/lib/docker/volumes /mnt/docker-volumes
sudo ln -sf /mnt/docker-volumes /var/lib/docker/volumes
sudo ls /var/lib/docker/volumes
df -h
- uses: actions/checkout@v4
- name: Run api compare tests on calibnet
shell: bash
Expand Down
Loading