Skip to content

Commit

Permalink
Check all SWAP opcodes for inst. hashes when viaIR is true (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke committed Mar 7, 2024
1 parent 6b576ca commit 6236a8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
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/git@github.com:/https:\/\/github.com\//"
Expand Down

0 comments on commit 6236a8f

Please sign in to comment.