Skip to content
Closed
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
7 changes: 0 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,12 @@ jobs:
- checkout
- attach_workspace:
at: .
- restore_cache:
keys:
- v6-optimism-build-{{ checksum "package-lock.json" }}
- run:
name: Build docker containers if necessary
command: |
if [ ! -d ./optimism ]; then
npx hardhat ops --fresh --build --build-ops
fi;
- save_cache:
key: v6-optimism-build-{{ checksum "package-lock.json" }}
paths:
- ./optimism
- run:
name: Start docker chains
background: true
Expand Down
14 changes: 7 additions & 7 deletions .circleci/src/jobs/job-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ steps:
- checkout
- attach_workspace:
at: .
- restore_cache:
keys:
- v6-optimism-build-{{ checksum "package-lock.json" }}
# - restore_cache:
# keys:
# - v6-optimism-build-{{ checksum "package-lock.json" }}
- run:
name: Build docker containers if necessary
command: |
if [ ! -d ./optimism ]; then
npx hardhat ops --fresh --build --build-ops
fi;
- save_cache:
key: v6-optimism-build-{{ checksum "package-lock.json" }}
paths:
- ./optimism
# - save_cache:
# key: v6-optimism-build-{{ checksum "package-lock.json" }}
# paths:
# - ./optimism
- run:
name: Start docker chains
background: true
Expand Down
2 changes: 1 addition & 1 deletion hardhat/tasks/task-ops.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ task('ops', 'Run Optimism chain')
.addOptionalParam(
'optimismCommit',
'Commit to checkout',
'05ace3ae2c12c6ba5a4a0ac33254f9547cc4557c'
'f1631a5f7ddb6eb4a342bfbd7d46233a43412f9b'
)
.setAction(async (taskArguments, hre, runSuper) => {
taskArguments.maxMemory = true;
Expand Down