Skip to content

Commit

Permalink
ci: bump ci-builder to 0.47.0 (ethereum-optimism#10126)
Browse files Browse the repository at this point in the history
* ci: bump ci-builder to 0.47.0

Includes a new foundry version that fixes issues with generating
state dumps for kontrol integration.

ethereum-optimism#10125
https://app.circleci.com/pipelines/github/ethereum-optimism/optimism/50797/workflows/a85a79de-a4a8-4820-9199-ded9ffe9de7d

* lint: fix

* snapshots: update kontrol
  • Loading branch information
tynes authored and pcw109550 committed Apr 15, 2024
1 parent dc3affd commit 7c5db24
Show file tree
Hide file tree
Showing 10 changed files with 1,368 additions and 192 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
parameters:
ci_builder_image:
type: string
default: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder:v0.46.1
default: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder:v0.47.0
ci_builder_rust_image:
type: string
default: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder-rust:latest
Expand Down
18 changes: 9 additions & 9 deletions packages/contracts-bedrock/scripts/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ contract Deploy is Deployer {
optimismMintableERC20Factory: mustGetAddress("OptimismMintableERC20FactoryProxy")
})
)
)
)
});

SystemConfig config = SystemConfig(systemConfigProxy);
Expand Down Expand Up @@ -997,7 +997,7 @@ contract Deploy is Deployer {
_innerCallData: abi.encodeCall(
L1StandardBridge.initialize,
(L1CrossDomainMessenger(l1CrossDomainMessengerProxy), SuperchainConfig(superchainConfigProxy))
)
)
});

string memory version = L1StandardBridge(payable(l1StandardBridgeProxy)).version();
Expand All @@ -1020,7 +1020,7 @@ contract Deploy is Deployer {
_innerCallData: abi.encodeCall(
L1ERC721Bridge.initialize,
(L1CrossDomainMessenger(payable(l1CrossDomainMessengerProxy)), SuperchainConfig(superchainConfigProxy))
)
)
});

L1ERC721Bridge bridge = L1ERC721Bridge(l1ERC721BridgeProxy);
Expand Down Expand Up @@ -1087,7 +1087,7 @@ contract Deploy is Deployer {
_innerCallData: abi.encodeCall(
L1CrossDomainMessenger.initialize,
(SuperchainConfig(superchainConfigProxy), OptimismPortal(payable(optimismPortalProxy)))
)
)
});

L1CrossDomainMessenger messenger = L1CrossDomainMessenger(l1CrossDomainMessengerProxy);
Expand Down Expand Up @@ -1117,7 +1117,7 @@ contract Deploy is Deployer {
cfg.l2OutputOracleChallenger(),
cfg.finalizationPeriodSeconds()
)
)
)
});

L2OutputOracle oracle = L2OutputOracle(l2OutputOracleProxy);
Expand Down Expand Up @@ -1151,7 +1151,7 @@ contract Deploy is Deployer {
SystemConfig(systemConfigProxy),
SuperchainConfig(superchainConfigProxy)
)
)
)
});

OptimismPortal portal = OptimismPortal(payable(optimismPortalProxy));
Expand Down Expand Up @@ -1180,7 +1180,7 @@ contract Deploy is Deployer {
SystemConfig(systemConfigProxy),
SuperchainConfig(superchainConfigProxy)
)
)
)
});

OptimismPortal2 portal = OptimismPortal2(payable(optimismPortalProxy));
Expand Down Expand Up @@ -1209,7 +1209,7 @@ contract Deploy is Deployer {
ProtocolVersion.wrap(requiredProtocolVersion),
ProtocolVersion.wrap(recommendedProtocolVersion)
)
)
)
});

ProtocolVersions versions = ProtocolVersions(protocolVersionsProxy);
Expand Down Expand Up @@ -1425,7 +1425,7 @@ contract Deploy is Deployer {
_innerCallData: abi.encodeCall(
DataAvailabilityChallenge.initialize,
(finalSystemOwner, daChallengeWindow, daResolveWindow, daBondSize, daResolverRefundPercentage)
)
)
});

DataAvailabilityChallenge dac = DataAvailabilityChallenge(payable(dataAvailabilityChallengeProxy));
Expand Down
10 changes: 5 additions & 5 deletions packages/contracts-bedrock/scripts/DeployPeriphery.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ contract DeployPeriphery is Script, Artifacts {
dripcheck: CheckBalanceLow(mustGetAddress("CheckBalanceLow")),
checkparams: abi.encode(
CheckBalanceLow.Params({ target: mustGetAddress("FaucetProxy"), threshold: cfg.faucetDripV1Threshold() })
),
),
actions: actions
})
});
Expand Down Expand Up @@ -401,7 +401,7 @@ contract DeployPeriphery is Script, Artifacts {
dripcheck: CheckBalanceLow(mustGetAddress("CheckBalanceLow")),
checkparams: abi.encode(
CheckBalanceLow.Params({ target: mustGetAddress("FaucetProxy"), threshold: cfg.faucetDripV2Threshold() })
),
),
actions: actions
})
});
Expand Down Expand Up @@ -436,7 +436,7 @@ contract DeployPeriphery is Script, Artifacts {
target: mustGetAddress("FaucetProxy"),
threshold: cfg.faucetAdminDripV1Threshold()
})
),
),
actions: actions
})
});
Expand All @@ -463,7 +463,7 @@ contract DeployPeriphery is Script, Artifacts {
// Gelato represents ETH as 0xeeeee....eeeee
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE,
cfg.faucetGelatoBalanceV1Value()
),
),
value: cfg.faucetGelatoBalanceV1Value()
});
drippie.create({
Expand All @@ -478,7 +478,7 @@ contract DeployPeriphery is Script, Artifacts {
threshold: cfg.faucetGelatoThreshold(),
treasury: cfg.faucetGelatoTreasury()
})
),
),
actions: actions
})
});
Expand Down
Loading

0 comments on commit 7c5db24

Please sign in to comment.