Commit 95fe7d2
build(pixi): package plotjuggler_sdk as a conda package + prefix.dev publish (#126)
* build(pixi): add SDK dev environment + tasks (configure/build/test/pack)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(pj_base): silence GCC 14 -Wstringop-overflow false-positive in protobuf_wire
Add body.reserve(64) in Writer::message() so GCC 14's optimizer sees a
non-zero initial capacity; without it the mid-end inliner concludes the
local body vector has size 0 and emits a spurious -Wstringop-overflow
on the appendVarint push_back path. GCC 15 does not emit the warning.
The reserve() is a capacity hint only — behavior is identical.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* build(pixi): commit pixi.lock for reproducible solves
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs: clarify pack output-dir rationale + reserve() comment (review feedback)
* build(conda): add rattler-build recipe for plotjuggler_sdk
Packages the SDK as a conda artifact via rattler-build. The recipe drives
cmake -DPJ_INSTALL_SDK=ON, suppresses fmt/fast_float run_exports (both are
BUILD_INTERFACE-only in the installed targets), and validates the output with
four file-existence tests (Config.cmake, ConfigVersion.cmake,
PjPluginManifest.cmake, libpj_base.a).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(conda): correct license to Apache-2.0 (recipe wrongly said MIT AND Apache-2.0)
* test(conda): build example consumer in package test + pin nlohmann_json run range
Exercises find_package(plotjuggler_sdk) + plugin link + pj_emit_plugin_manifest on
every build (all platforms), not just file-existence. Run-deps nlohmann_json >=3.12,<4.
* ci(conda): tag-gated build + publish to prefix.dev (linux-64)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* ci(conda): guard recipe.yaml version too + document workflow_dispatch (review feedback)
* ci(conda): guard CMakeLists PJ_PACKAGE_VERSION + pin rattler-build to CI's 0.66.2
Final integration review: the SDK version is hardcoded in three places
(conanfile.py, recipe.yaml, CMakeLists.txt PJ_PACKAGE_VERSION); the publish
guard now checks all three against the tag. Align the dev pack tool to the
exact rattler-build the CI uses.
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent e775917 commit 95fe7d2
6 files changed
Lines changed: 2338 additions & 0 deletions
File tree
- .github/workflows
- pj_base/src/builtin
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
0 commit comments