-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[github-action] build jobs failure due to deprecated macOS-12 environment #307
Merged
Merged
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
c264661
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 a3d197e
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 fa546cc
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 e053b35
Revert "[github-acction] build jobs failure due to deprecated macOS-1…
ZhangLe2016 0704054
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 fcfd013
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 889a79a
handling the build failure in nightly-build (26, x86_64, macos-13)
ZhangLe2016 a792f4e
execute the realpath command based on OS environment
ZhangLe2016 c5cd580
execute the realpath command based on OS environment
ZhangLe2016 3f374fe
execute the realpath command based on OS environment
ZhangLe2016 ba76632
execute the realpath command based on OS environment
ZhangLe2016 2e8bfaf
execute the realpath command based on OS environment
ZhangLe2016 ea29891
execute the realpath command based on OS environment
ZhangLe2016 6485a51
execute the realpath command based on OS environment
ZhangLe2016 80ce37a
execute the realpath command based on OS environment
ZhangLe2016 461319e
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 9ad5187
[github-acction] build jobs failure due to deprecated macOS-12 enviro…
ZhangLe2016 56893da
restore the common.sh file
ZhangLe2016 4002d9d
restore the common.sh file
ZhangLe2016 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you try
macos-14
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
macOS-14 may introduce a new issue: 'Timeout waiting for emulator to boot.' Currently, there is no known solution to address this issue.
https://github.com/openthread/ot-commissioner/actions/runs/12174524147?pr=308
https://github.com/openthread/ot-commissioner/actions/runs/12174524147/job/33959234711?pr=308#step:6:77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jwhui The current reason why we cannot use macOS 14 is that the CPU architecture of macOS 14 has changed, making it incompatible with Android API 26 or 27 ABI x86_64. Upgrading the Android NDK version to 28 or above is required. I tried to upgrade the Android NDK version using
apt install/brew install android-sdk
, but it was unsuccessful in the current GitHub environment. Therefore, there is no effective way to directly use macOS 14 in the short term. We will temporarily use the macOS 13 environment and upgrade to macOS 14 as the GitHub environment changes. What do you think? Thanks~~https://stackoverflow.com/questions/74760054/panic-avds-cpu-architecture-arm64-is-not-supported-by-the-qemu2-emulator-on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for checking. I'm fine with deferring change to
macos-14
to later.