Skip to content

"Unsupported architecture: ia32" even if stack is disabled #130

@0rphee

Description

@0rphee

If stack doesn't support this arch, only fail if enable-stack: true.

Example of a workflow failure: https://github.com/0rphee/cripto_final/actions/runs/20246908790/job/58129213772

The offending function:

setup/src/installer.ts

Lines 224 to 235 in 45e5652

async function stackArchString(arch: Arch): Promise<string> {
switch (arch) {
case 'arm64':
return Promise.resolve('aarch64');
case 'x64':
return Promise.resolve('x86_64');
default:
const err = `Unsupported architecture: ${arch}`;
core.error(err);
return Promise.reject(err);
}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions