forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
655 changed files
with
149,788 additions
and
26,050 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# accounts/usbwallet @karalabe | ||
# accounts/scwallet @gballet | ||
# accounts/abi @gballet @MariusVanDerWijden | ||
# cmd/clef @holiman | ||
# cmd/puppeth @karalabe | ||
# consensus @karalabe | ||
# core/ @karalabe @holiman @rjl493456442 | ||
# eth/ @karalabe @holiman @rjl493456442 | ||
# eth/catalyst/ @gballet | ||
# graphql/ @gballet | ||
# les/ @zsfelfoldi @rjl493456442 | ||
# light/ @zsfelfoldi @rjl493456442 | ||
# mobile/ @karalabe @ligi | ||
# node/ @fjl @renaynay | ||
# p2p/ @fjl @zsfelfoldi | ||
# rpc/ @fjl @holiman | ||
# p2p/simulations @fjl | ||
# p2p/protocols @fjl | ||
# p2p/testing @fjl | ||
# signer/ @holiman | ||
accounts/usbwallet @karalabe | ||
accounts/scwallet @gballet | ||
accounts/abi @gballet @MariusVanDerWijden | ||
cmd/clef @holiman | ||
cmd/puppeth @karalabe | ||
consensus @karalabe | ||
core/ @karalabe @holiman @rjl493456442 | ||
eth/ @karalabe @holiman @rjl493456442 | ||
eth/catalyst/ @gballet | ||
eth/tracers/ @s1na | ||
graphql/ @gballet @s1na | ||
les/ @zsfelfoldi @rjl493456442 | ||
light/ @zsfelfoldi @rjl493456442 | ||
mobile/ @karalabe @ligi | ||
node/ @fjl | ||
p2p/ @fjl @zsfelfoldi | ||
rpc/ @fjl @holiman | ||
p2p/simulations @fjl | ||
p2p/protocols @fjl | ||
p2p/testing @fjl | ||
signer/ @holiman |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: dev-ci | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
build_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Build Go-MetadiumX | ||
run: make metadium | ||
- name: Check Build | ||
run: ls -al build/metadium.tar.gz | ||
|
||
lint_test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: [1.17, 1.18, 1.19] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ matrix.version }} | ||
|
||
- name: Check Lint | ||
run: make lint | ||
|
||
unit_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Check golang Test Cases | ||
run: | | ||
unset ANDROID_HOME | ||
make test-short |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: dev-cron | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: dev | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Build Go-Metadium | ||
run: make metadium | ||
- name: Check Build | ||
run: ls -al build/metadium.tar.gz | ||
|
||
lint_test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: [1.17, 1.18, 1.19] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: dev | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ matrix.version }} | ||
|
||
- name: Check Lint | ||
run: make lint | ||
|
||
unit_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: dev | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Check golang Test Cases | ||
run: | | ||
unset ANDROID_HOME | ||
make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: master-ci | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Build Go-Metadium | ||
run: make metadium | ||
- name: Check Build | ||
run: ls -al build/metadium.tar.gz | ||
|
||
lint_test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: [1.17, 1.18, 1.19] | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ matrix.version }} | ||
|
||
- name: Check Lint | ||
run: make lint | ||
|
||
unit_test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Check golang Test Cases | ||
run: | | ||
unset ANDROID_HOME | ||
make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.