Skip to content
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
21 changes: 20 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1146,6 +1146,10 @@ jobs:
fork_base_rpc:
description: Fork Base RPC
type: string
dev_features:
description: Comma-separated list of dev features to enable (e.g., "OPTIMISM_PORTAL_INTEROP,ANOTHER_FEATURE")
type: string
default: ""
docker:
- image: <<pipeline.parameters.default_docker_image>>
resource_class: xlarge
Expand Down Expand Up @@ -1176,6 +1180,8 @@ jobs:
- restore_cache:
name: Restore forked state
key: forked-state-contracts-bedrock-tests-upgrade-<<parameters.fork_op_chain>>-<<parameters.fork_base_chain>>-{{ checksum "packages/contracts-bedrock/pinnedBlockNumber.txt" }}
- setup-dev-features:
dev_features: <<parameters.dev_features>>
- run:
name: Run tests
command: just test-upgrade
Expand Down Expand Up @@ -2453,14 +2459,27 @@ workflows:
- circleci-repo-readonly-authenticated-github-token
requires:
- initialize
- contracts-bedrock-tests-upgrade:
name: contracts-bedrock-tests-upgrade op-mainnet <<matrix.dev_features>>
fork_op_chain: op
fork_base_chain: mainnet
fork_base_rpc: https://ci-mainnet-l1-archive.optimism.io
dev_features: <<matrix.dev_features>>
matrix:
parameters:
dev_features: *dev_features_matrix
context:
- circleci-repo-readonly-authenticated-github-token
requires:
- initialize
- contracts-bedrock-tests-upgrade:
name: contracts-bedrock-tests-upgrade <<matrix.fork_op_chain>>-mainnet
fork_op_chain: <<matrix.fork_op_chain>>
fork_base_chain: mainnet
fork_base_rpc: https://ci-mainnet-l1-archive.optimism.io
matrix:
parameters:
fork_op_chain: ["op", "base", "ink", "unichain"]
fork_op_chain: ["base", "ink", "unichain"]
context:
- circleci-repo-readonly-authenticated-github-token
requires:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ abstract contract OPContractsManagerStandardValidator_TestInit is CommonTest, Di
Claim cannonPrestate;

/// @notice The CannonKona absolute prestate.
Claim cannonKonaPrestate = Claim.wrap(bytes32(keccak256("cannonKona")));
Claim cannonKonaPrestate = Claim.wrap(bytes32(keccak256("cannonKonaPrestate")));

/// @notice The proposer role set on the PermissionedDisputeGame instance.
address proposer;
Expand Down