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
1c00dcbc
Unverified
Commit
1c00dcbc
authored
Jun 24, 2023
by
Mark Tyneway
Committed by
GitHub
Jun 24, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6133 from ethereum-optimism/contracts-bedrock/delete-dead-ci
contracts-bedrock: delete dead ci check
parents
f081b1ae
e8218ad4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
29 deletions
+0
-29
config.yml
.circleci/config.yml
+0
-8
check-op-node.ts
packages/contracts-bedrock/tasks/check-op-node.ts
+0
-20
index.ts
packages/contracts-bedrock/tasks/index.ts
+0
-1
No files found.
.circleci/config.yml
View file @
1c00dcbc
...
...
@@ -871,10 +871,6 @@ jobs:
name
:
Deposit ETH through the bridge
command
:
timeout 8m npx hardhat deposit-eth --network devnetL1 --l1-contracts-json-path ../../.devnet/sdk-addresses.json
working_directory
:
packages/sdk
-
run
:
name
:
Check the status
command
:
npx hardhat check-op-node
working_directory
:
packages/contracts-bedrock
-
run
:
name
:
Dump op-node logs
command
:
|
...
...
@@ -926,10 +922,6 @@ jobs:
name
:
Deposit ETH through the bridge
command
:
timeout 10m npx hardhat deposit-eth --network devnetL1
working_directory
:
packages/sdk
-
run
:
name
:
Check the status
command
:
npx hardhat check-op-node
working_directory
:
packages/contracts-bedrock
-
run
:
name
:
Dump op-node logs
command
:
|
...
...
packages/contracts-bedrock/tasks/check-op-node.ts
deleted
100644 → 0
View file @
f081b1ae
import
{
task
,
types
}
from
'
hardhat/config
'
import
{
OpNodeProvider
}
from
'
@eth-optimism/core-utils
'
// TODO(tynes): add in config validation
task
(
'
check-op-node
'
,
'
Validate the config of the op-node
'
)
.
addParam
(
'
opNodeUrl
'
,
'
URL of the OP Node.
'
,
'
http://localhost:7545
'
,
types
.
string
)
.
setAction
(
async
(
args
)
=>
{
const
provider
=
new
OpNodeProvider
(
args
.
opNodeUrl
)
const
syncStatus
=
await
provider
.
syncStatus
()
console
.
log
(
JSON
.
stringify
(
syncStatus
,
null
,
2
))
const
config
=
await
provider
.
rollupConfig
()
console
.
log
(
JSON
.
stringify
(
config
,
null
,
2
))
})
packages/contracts-bedrock/tasks/index.ts
View file @
1c00dcbc
import
'
./deposits
'
import
'
./check-op-node
'
import
'
./validate-spacers
'
import
'
./solidity
'
import
'
./check-l2
'
...
...
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