Skip to content

Commit 6236a8f

Browse files
authored
Check all SWAP opcodes for inst. hashes when viaIR is true (#873)
1 parent 6b576ca commit 6236a8f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
command: |
5656
bash <(curl -s https://codecov.io/bash)
5757
e2e-zeppelin:
58-
machine: true
58+
machine:
59+
image: ubuntu-2204:2024.01.1
60+
resource_class: large
5961
environment:
6062
NODE_OPTIONS: --max_old_space_size=8192
6163
steps:

lib/collector.js

+5
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ class DataCollector {
9999
opcodes[key] = viaIR;
100100
}
101101

102+
for (let i = 1; i <= 16; i++ ) {
103+
const key = "SWAP" + i;
104+
opcodes[key] = viaIR;
105+
}
106+
102107
return opcodes;
103108
}
104109

scripts/zeppelin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -o errexit
88
# Get rid of any caches
99
sudo rm -rf node_modules
1010
echo "NVM CURRENT >>>>>" && nvm current
11-
nvm use 18
11+
nvm use 20
1212

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

0 commit comments

Comments
 (0)