-
Notifications
You must be signed in to change notification settings - Fork 0
fix(dev): mount build.rs into cryptify-fileshare so PG_CORE_VERSION compiles #248
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
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 |
|---|---|---|
|
|
@@ -18,6 +18,9 @@ services: | |
| - ./cryptify/conf/config.dev.toml:/app/config.toml:ro | ||
| - ./cryptify/src:/app/src | ||
| - ./cryptify/templates:/app/templates | ||
| - ./cryptify/build.rs:/app/build.rs:ro | ||
| - ./cryptify/Cargo.toml:/app/Cargo.toml:ro | ||
|
Contributor
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. [Rule: no-justification-paragraphs-for-simple-changes] After rebasing onto |
||
| - ./cryptify/Cargo.lock:/app/Cargo.lock:ro | ||
|
Contributor
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. |
||
| - cryptify-target:/app/target | ||
| environment: | ||
| - RUST_LOG=info | ||
|
|
||
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.
[Code review] PR branch's cryptify submodule pointer is
4c30e53, which predates the addition ofbuild.rsupstream (cryptify#170, present from 7816df8). A freshgh pr checkout 248 && git submodule update --initleaves./cryptify/build.rsmissing, so the bind mount has no source file and Docker will create an empty path or refuse to start — the stated test plan can't be executed against the branch as-shipped. Bump the submodule pointer or rebase ontomain(already at 63066a1).