Fix onnxruntime executable stack crash on ARM64/Rosetta#82
Merged
NeonDaniel merged 4 commits intoMay 15, 2026
Merged
Conversation
NeonDaniel
requested changes
May 13, 2026
Member
NeonDaniel
left a comment
There was a problem hiding this comment.
Updating neon-utils should be a better option instead of putting an upper limit on ovos-utils
Merged
NeonDaniel
added a commit
that referenced
this pull request
May 15, 2026
# Description Update Python versions used in unit tests Update test dependency installation Fix error in GHA workflow causing partial test execution # Issues - Addresses test failures observed in #82 # Other Notes <!-- Note any breaking changes, WIP changes, requests for input, etc. here -->
Add platforms: linux/amd64,linux/arm64 to both publish workflows. Also fix indentation bug in publish_release.yml where the websat job was nested under the gradio job instead of being a sibling.
Co-authored-by: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com>
e80d8cf to
d92ce4a
Compare
NeonDaniel
approved these changes
May 15, 2026
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.
Summary
onnxruntimefrom~=1.16.3to~=1.17— v1.16.x ships withPT_GNU_STACK(executable stack), which fails under Rosetta 2 withImportError: cannot enable executable stack as shared object requires: Invalid argument. Fixed upstream in onnxruntime v1.17.0.ovos-utils>=0.8,<0.8.5— v0.8.5 removedovos_utils.signal, whichneon_utils1.14.0 still imports, breaking container startup.Test plan
EXTRAS=web_satimport onnxruntimesucceeds (v1.23.2 installed, no executable stack error)from openwakeword.vad import VADsucceedsCloses #81