-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mononoke: add README.md and the missing pieces for supporting cargo (#13
) Summary: Take the README.md from https://github.com/facebookexperimental/mononoke/blob/7ead0e29e41aec0771531a4650b6170bc1ff6566/README.md and apply it on Eden repo. Re-add the Cargo.toml file that declares Cargo workspace. Re-add fbcode_builder/getdeps manifest for Mononoke Pull Request resolved: facebook/sapling#13 Test Plan: ./build/fbcode_builder/getdeps.py build mononoke ./build/fbcode_builder/getdeps.py test mononoke Reviewed By: ahornby Differential Revision: D19833059 Pulled By: lukaspiatkowski fbshipit-source-id: fb37e13306c0b9969a7c4e52b05e1a66a577022f
- Loading branch information
1 parent
7951d10
commit 4c624f3
Showing
4 changed files
with
71 additions
and
15 deletions.
There are no files selected for viewing
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
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
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
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,37 @@ | ||
[manifest] | ||
name = mononoke | ||
fbsource_path = fbcode/eden | ||
shipit_project = eden | ||
shipit_fbcode_builder = true | ||
|
||
[git] | ||
repo_url = https://github.com/facebookexperimental/eden.git | ||
|
||
[build.not(os=windows)] | ||
builder = cargo | ||
|
||
[build.os=windows] | ||
# building Mononoke on windows is not supported | ||
builder = nop | ||
|
||
[cargo] | ||
build_doc = true | ||
workspace_dir = eden/mononoke | ||
|
||
[shipit.pathmap] | ||
fbcode/eden/oss = . | ||
fbcode/eden = eden | ||
fbcode/eden/mononoke/public_autocargo = eden/mononoke | ||
fbcode/tools/lfs = tools/lfs | ||
tools/rust/ossconfigs = . | ||
|
||
[shipit.strip] | ||
# strip all code unrelated to mononoke to prevent triggering unnecessary checks | ||
^fbcode/eden/(?!mononoke)/.*$ | ||
^fbcode/eden/mononoke/(?!public_autocargo).+/Cargo\.toml$ | ||
|
||
[dependencies] | ||
rust-shed | ||
|
||
[dependencies.fb=on] | ||
rust |