You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci, build: replace CI workflows with thin wrappers
Splits the repository so C++ source stays on master and CI scripts,
docs, and examples move to the support branch. Master's CI workflows
become thin wrappers that delegate to the reusable workflows on the
support branch.
GitHub Actions changes:
- ci.yml, bitcoin-core-ci.yml: replaced with thin wrappers that call
the corresponding reusable workflows on the support branch.
CMakeLists.txt:
- Remove add_subdirectory(example): example/ moves to the support
branch and is built from support's own CMakeLists.txt.
cmake/TargetCapnpSources.cmake:
- Fix build-side include path computation to anchor on
CMAKE_CURRENT_SOURCE_DIR/BINARY_DIR instead of the top-level
CMAKE_SOURCE_DIR/BINARY_DIR. The old code computed a relative path
from the project root to include_prefix and appended it to
CMAKE_BINARY_DIR, which breaks when include_prefix lies outside
CMAKE_SOURCE_DIR (as happens when master is built as a subdirectory
of the support branch project).
- Update docstring and example to use CMAKE_CURRENT_SOURCE_DIR.
README.md:
- Update documentation links to point to the support branch.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
`libmultiprocess` is a C++ library and code generator making it easy to call functions and reference objects in different processes.
4
4
5
-
For more information see the [usage instructions](doc/usage.md), [installation instructions](doc/install.md), or [design documentation](doc/design.md).
5
+
For more information see the [usage instructions](https://github.com/bitcoin-core/libmultiprocess/blob/support/doc/usage.md), [installation instructions](https://github.com/bitcoin-core/libmultiprocess/blob/support/doc/install.md), or [design documentation](https://github.com/bitcoin-core/libmultiprocess/blob/support/doc/design.md) in the [support branch](https://github.com/bitcoin-core/libmultiprocess/tree/support).
6
6
7
7
If you have any questions, comments, or feedback, please submit an [issue](https://github.com/bitcoin-core/libmultiprocess/issues/new).
8
8
Duplicate issues are perfectly fine and all discussion about the project is welcome, since there isn't another discussion forum currently.
0 commit comments