ci: robust CI workflow + fix --userdataobj flag#63
Closed
simonCatBot wants to merge 1 commit into
Closed
Conversation
… benchmarking (KhronosGroup#61) Modeled after kiritigowda/rustVX conformance.yml workflow. Phase 1 (parallel): - build-debug: Debug build with all extensions + coverage flags - build-release: Release build with all extensions (for benchmarking) - build-cts: Build Khronos CTS against debug install Phase 2 (parallel, needs build-cts): - cts-baseline: Smoke tests + code coverage collection - cts-enhanced-vision, cts-neural-networks, cts-ix, cts-graph-features, cts-data-objects, cts-user-kernels: Stage-based CTS runs with --filter, matching rustVX pattern Phase 3 (PR only, needs build-release + build-main): - build-main: Build target branch release for comparison - perf-gate: Clone openvx-mark, build against PR and main, run benchmarks, compare results Known issues (marked continue-on-error): - cts-neural-networks: TensorNetworks.AlexNetTestNetwork fails to load weights (missing test_data file, pre-existing) - cts-graph-features: GraphPipeline.* fails (pipelining incomplete in C model target, pre-existing) Removed legacy .travis.yml and .gitlab-ci.yml. Excluded --conf_nnef due to NNEF-Tools GCC 11 incompatibility. Co-authored-by: Simon <simon@openclaw.ai>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR replaces #62 and fixes all CI failures discovered during the first run.
What is fixed
Build.py — added missing
--userdataobjCLI flag (same as fix(Build.py): add missing --userdataobj CLI flag #62)CI workflow robustness:
build-mainnow probes for--userdataobjsupport before using it, avoiding chicken-and-egg failures when the base branch does not yet have the flag.build-debugpreservesbuild/Linux/x64/Debug/artifacts so downstreamlcovcoverage collection can find.gcno/.gcdafiles.cts-baselinerestored thelcovcoverage step.cts-neural-networksandcts-graph-featuresalready markedcontinue-on-errorfor known pre-existing failures.Verification