Migrate to capy post-#262 buffer API #270
Merged
Annotations
1 error and 1 warning
|
Boost CMake Workflow
CMake Workflow failed: CMake configure failed with exit code 1
Stack trace:
at processEntry
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:412:19
407 │ });
408 │ if (entry.create_annotations) {
409 │ createCMakeConfigureAnnotations(stdout, entry);
410 │ }
411 │ if (exitCode !== 0) {
❯ 412 │ throw new Error(`CMake configure failed with exit code ${exitCode}`);
413 │ }
414 │ }
415 │ core.endGroup();
416 │
417 │ // ==============================================
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:941:9
936 │ // Process each entry
937 │ // ==============================================
938 │ for (const entry of entries) {
939 │ const desc = makeFactorDescription(entry);
940 │ core.startGroup(`🧩 Processing: ${desc}`);
❯ 941 │ await processEntry(entry, setupCMakeOutputs, resolvedParams);
942 │ core.endGroup();
943 │ }
944 │ }
945 │
946 │ /**
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:955:9
950 │ inputsSchema,
951 │ outputsSchema,
952 │ title: 'CMake Workflow',
953 │ main: async (rawInputs: RawInputs) => {
954 │ const inputs = convertRawInputs(rawInputs);
❯ 955 │ await main(inputs);
956 │ return {};
957 │ },
958 │ callerModule: module
959 │ });
960 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Complete job
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/[email protected], alandefreitas/cpp-actions/[email protected], alandefreitas/cpp-actions/[email protected], alandefreitas/cpp-actions/[email protected]. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
background
wait
wait-all
cancel
Loading