-
Notifications
You must be signed in to change notification settings - Fork 1.5k
dir improvements: turn p2p into a module
#14889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c1b7e14
2555001
c20dc77
16c7418
977ac30
672f7d3
db1ca34
a601c5e
5de9058
35e434c
0eeb6e4
1ae1212
90bac1d
e309d56
fc2bb21
450fa10
1bfcc5f
62fc030
d07ab57
6d962de
5a1eb57
371ff08
478d102
959fe7f
6719b61
a3e40c5
0b4370a
ed888d1
2832464
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -114,3 +114,6 @@ jobs: | |
|
|
||
| - name: Test erigon-db | ||
| run: cd erigon-db && make test | ||
|
|
||
| - name: Test p2p | ||
| run: cd p2p && make test | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,8 @@ | |
| ADD erigon-lib/go.sum erigon-lib/go.sum | ||
| ADD erigon-db/go.mod erigon-db/go.mod | ||
| ADD erigon-db/go.sum erigon-db/go.sum | ||
| ADD p2p/go.mod p2p/go.mod | ||
| ADD p2p/go.sum p2p/go.sum | ||
Check noticeCode scanning / SonarCloud Prefer COPY over ADD for copying local resources Low
Replace this ADD instruction with a COPY instruction. See more on SonarQube Cloud
|
||
|
|
||
| RUN go mod download | ||
| ADD . . | ||
|
|
@@ -32,6 +34,8 @@ | |
| ADD erigon-lib/go.sum erigon-lib/go.sum | ||
| ADD erigon-db/go.mod erigon-db/go.mod | ||
| ADD erigon-db/go.sum erigon-db/go.sum | ||
| ADD p2p/go.mod p2p/go.mod | ||
Check noticeCode scanning / SonarCloud Prefer COPY over ADD for copying local resources Low
Replace this ADD instruction with a COPY instruction. See more on SonarQube Cloud
|
||
| ADD p2p/go.sum p2p/go.sum | ||
Check noticeCode scanning / SonarCloud Prefer COPY over ADD for copying local resources Low
Replace this ADD instruction with a COPY instruction. See more on SonarQube Cloud
|
||
|
|
||
| RUN mkdir -p /app/build/bin | ||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Check notice
Code scanning / SonarCloud
Prefer COPY over ADD for copying local resources Low