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

Check all SWAP opcodes for inst. hashes when viaIR is true #873

Merged
merged 3 commits into from
Mar 7, 2024
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
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
command: |
bash <(curl -s https://codecov.io/bash)
e2e-zeppelin:
machine: true
machine:
image: ubuntu-2204:2024.01.1
resource_class: large
environment:
NODE_OPTIONS: --max_old_space_size=8192
steps:
Expand Down
5 changes: 5 additions & 0 deletions lib/collector.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ class DataCollector {
opcodes[key] = viaIR;
}

for (let i = 1; i <= 16; i++ ) {
const key = "SWAP" + i;
opcodes[key] = viaIR;
}

return opcodes;
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/zeppelin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -o errexit
# Get rid of any caches
sudo rm -rf node_modules
echo "NVM CURRENT >>>>>" && nvm current
nvm use 18
nvm use 20

# Use PR env variables (for forks) or fallback on local if PR not available
SED_REGEX="s/[email protected]:/https:\/\/github.com\//"
Expand Down