-
Notifications
You must be signed in to change notification settings - Fork 77
ping/rust: Refactor into multiple binaries #72
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
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
aa08d37
Refactor into multiple rust binaries
thomaseizinger 0e8d9a4
Merge branch 'master' into 71-split-rust-crate
thomaseizinger 6d1b820
Fix some errors
thomaseizinger 2056ae8
Update master libp2p to make use of latest derive features
thomaseizinger 62460ea
Explicitly specify git revision in manifest file
thomaseizinger 7d3decb
Cargo updates dependency automatically if the manifest file changes
thomaseizinger a8889e1
Make Dockerfile more maintenance friendly
thomaseizinger 42bfd42
Remove stale `UpdateCmd`
thomaseizinger e69c165
Fix and simplify `sed`s
thomaseizinger f1cffef
Escape `GIT_TARGET` properly
thomaseizinger 2c17e00
Restore original Dockerfile from local testing
thomaseizinger 16aff9d
Add comment about build cache
thomaseizinger b6d6549
Put `if` on one line
thomaseizinger 69c7d14
Update README
thomaseizinger 6ac74b0
Use alternative sed delimiter
thomaseizinger 40cfcac
Actually expand variables :facepalm:
thomaseizinger c95c03b
Attempt to fix entrypoint
thomaseizinger 5ede777
Try not quoting vars
thomaseizinger 8a739d3
More Dockerfile debugging
thomaseizinger a632dde
More Dockerfile debugging
thomaseizinger f53398c
More Dockerfile debugging
thomaseizinger fff11a9
More Dockerfile debugging
thomaseizinger 7d2b5ab
More Dockerfile debugging
thomaseizinger ddc0d72
Apply suggestions from code review
thomaseizinger c5710e1
ping/rust/Dockerfile: Fix typo usrl usr
mxinden 6bc971d
Update ping/rust/Dockerfile
thomaseizinger e81e928
Move in previous container
thomaseizinger a4472fb
Move comment out the way
thomaseizinger e50da9b
Copy binary directly into correct location
thomaseizinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,29 +1,29 @@ | ||||||
| [master] | ||||||
| CargoFeatures = 'libp2pmaster' | ||||||
| BinaryName = 'testplan_0500' | ||||||
|
|
||||||
| [custom] | ||||||
| CargoFeatures = 'libp2pmaster' | ||||||
| BinaryName = 'testplan_0500' | ||||||
|
|
||||||
| [[groups]] | ||||||
| Id = '0.49.0' | ||||||
| CargoFeatures = 'libp2pv0490' | ||||||
| BinaryName = 'testplan_0490' | ||||||
|
|
||||||
| [[groups]] | ||||||
| Id = '0.48.0' | ||||||
| CargoFeatures = 'libp2pv0480' | ||||||
| BinaryName = 'testplan_0480' | ||||||
|
|
||||||
| [[groups]] | ||||||
| Id = "v0.47.0" | ||||||
| CargoFeatures = 'libp2pv0470' | ||||||
| BinaryName = 'testplan_0470' | ||||||
|
|
||||||
| [[groups]] | ||||||
| Id = "v0.46.0" | ||||||
| CargoFeatures = 'libp2pv0460' | ||||||
| BinaryName = 'testplan_0460' | ||||||
|
|
||||||
| [[groups]] | ||||||
| Id = "v0.45.1" | ||||||
| CargoFeatures = 'libp2pv0450' | ||||||
| BinaryName = 'testplan_0450' | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you send a follow-up if you care much? :) I'd prefer to merge this asap to unblock libp2p/rust-libp2p#2972. |
||||||
|
|
||||||
| [[groups]] | ||||||
| Id = "v0.44.0" | ||||||
| CargoFeatures = 'libp2pv0440' | ||||||
| BinaryName = 'testplan_0440' | ||||||
This file contains hidden or 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,3 @@ | ||
| target/ | ||
| Dockerfile | ||
| manifest.toml |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should here also be the
46.1?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, this is take verbatim from current master.