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

Use -unrestricted for e2e non-fast tests #849

Merged
merged 4 commits into from
Dec 3, 2024
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
25 changes: 25 additions & 0 deletions .github/workflows/reusable-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,48 +96,70 @@ jobs:
include:
- command: "yarn test-parallel --max-workers=10"
fast: false
unlocked: true
- command: "yarn test-sequential-no-bootstrap"
fast: false
unlocked: true
- command: "yarn test-seqgasless"
fast: false
unlocked: true
- command: "yarn test-maintenance"
fast: true
unlocked: false
- command: "yarn test-rollupUpdate"
fast: true
unlocked: false
- command: "yarn test-bootstrap"
fast: false
unlocked: true
- command: "yarn test-rewards-bootstrap"
fast: false
unlocked: true
- command: "yarn test-parallel-autocompound"
fast: true
unlocked: false
- command: "yarn test-sequential-autocompound"
fast: true
unlocked: false
- command: "yarn test-poolliquidity"
fast: true
unlocked: false
- command: "yarn test-governance"
fast: true
unlocked: false
- command: "yarn test-multiswap"
fast: false
unlocked: true
- command: "yarn test-experimentalStaking"
fast: true
unlocked: false
- command: "yarn test-crowdloan"
fast: false
unlocked: true
- command: "yarn test-sdk"
fast: true
unlocked: false
- command: "yarn test-parallel-3rdPartyRewards"
fast: true
unlocked: false
- command: "yarn test-sequencerStaking"
fast: true
unlocked: false
- command: "yarn test-sequencerCancellation"
fast: true
unlocked: false
- command: "yarn test-rolldown"
fast: true
unlocked: false
- command: "yarn test-rolldownWithdrawal"
fast: true
unlocked: false
- command: "yarn test-rolldownPreOperationWithdrawal"
fast: true
unlocked: false
- command: "yarn test-sequencerRewards"
fast: true
unlocked: false



Expand All @@ -159,6 +181,9 @@ jobs:
- name: Adapt if fast runtime
if: ${{ !contains(env.NODE_DOCKER_IMAGE, 'fast') && matrix.fast == true }}
run: echo "NODE_DOCKER_IMAGE=${{ env.NODE_DOCKER_IMAGE }}-fast" >> $GITHUB_ENV
- name: Adapt if unlocked
if: ${{ !contains(env.NODE_DOCKER_IMAGE, 'fast') && matrix.unlocked == true }}
run: echo "NODE_DOCKER_IMAGE=${{ env.NODE_DOCKER_IMAGE }}-unlocked" >> $GITHUB_ENV


- name: Download node Docker image
Expand Down
Loading