Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix warp sync #968

Merged
Merged
Show file tree
Hide file tree
Changes from 10 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
26 changes: 26 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,32 @@ jobs:
npm run fmt-check
working-directory: ./e2e-tests

sync-test:
needs: [build, lint]
runs-on:
group: laos
labels: ubuntu-16-cores
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- uses: ./.github/actions/cache
with:
cache-key: test

- name: Download LAOS binary
uses: actions/download-artifact@v4
with:
name: laos-binary
path: ./target/release

- name: Give executable permissions to LAOS binary
run: |
chmod +x ./target/release/laos

- name: Warp Sync
run: |
SKIP_WASM_BUILD=1 cargo test --features sync-test --locked warp


zombie-tests:
needs: [build, lint]
Expand Down
Loading
Loading