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

debug-zeppelin-master
cgewecke 9 months ago committed by GitHub
parent 6b576cae5a
commit 6236a8fe9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .circleci/config.yml
  2. 5
      lib/collector.js
  3. 2
      scripts/zeppelin.sh

@ -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:

@ -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;
}

@ -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\//"

Loading…
Cancel
Save