Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
d92b3a8e
Unverified
Commit
d92b3a8e
authored
Dec 08, 2023
by
Matthew Slipper
Committed by
GitHub
Dec 08, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8456 from ethereum-optimism/ctb/deny-warning
contracts-bedrock: fail on warnings
parents
460da7e3
182e3666
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
config.yml
.circleci/config.yml
+2
-0
foundry.toml
packages/contracts-bedrock/foundry.toml
+3
-2
Deploy.s.sol
packages/contracts-bedrock/scripts/Deploy.s.sol
+0
-1
No files found.
.circleci/config.yml
View file @
d92b3a8e
...
@@ -161,6 +161,8 @@ jobs:
...
@@ -161,6 +161,8 @@ jobs:
command
:
forge --version
command
:
forge --version
-
run
:
-
run
:
name
:
Build monorepo
name
:
Build monorepo
environment
:
FOUNDRY_PROFILE
:
ci
command
:
pnpm build
command
:
pnpm build
-
persist_to_workspace
:
-
persist_to_workspace
:
root
:
"
."
root
:
"
."
...
...
packages/contracts-bedrock/foundry.toml
View file @
d92b3a8e
...
@@ -53,8 +53,9 @@ ignore = ['src/vendor/WETH9.sol']
...
@@ -53,8 +53,9 @@ ignore = ['src/vendor/WETH9.sol']
# PROFILE: CI #
# PROFILE: CI #
################################################################
################################################################
[profile.ci.fuzz]
[profile.ci]
runs
=
512
deny_warnings
=
true
fuzz
=
{
runs
=
512
}
################################################################
################################################################
# PROFILE: LITE #
# PROFILE: LITE #
...
...
packages/contracts-bedrock/scripts/Deploy.s.sol
View file @
d92b3a8e
...
@@ -812,7 +812,6 @@ contract Deploy is Deployer {
...
@@ -812,7 +812,6 @@ contract Deploy is Deployer {
/// @notice Initialize the L1ERC721Bridge
/// @notice Initialize the L1ERC721Bridge
function initializeL1ERC721Bridge() public broadcast {
function initializeL1ERC721Bridge() public broadcast {
console.log("Upgrading and initializing L1ERC721Bridge proxy");
console.log("Upgrading and initializing L1ERC721Bridge proxy");
ProxyAdmin proxyAdmin = ProxyAdmin(mustGetAddress("ProxyAdmin"));
address l1ERC721BridgeProxy = mustGetAddress("L1ERC721BridgeProxy");
address l1ERC721BridgeProxy = mustGetAddress("L1ERC721BridgeProxy");
address l1ERC721Bridge = mustGetAddress("L1ERC721Bridge");
address l1ERC721Bridge = mustGetAddress("L1ERC721Bridge");
address superchainConfigProxy = mustGetAddress("SuperchainConfigProxy");
address superchainConfigProxy = mustGetAddress("SuperchainConfigProxy");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment