build: skip tests when building for iOS#5598
Merged
martin-frbg merged 1 commit intoOpenMathLib:developfrom Jan 19, 2026
Merged
Conversation
Collaborator
|
Curious as the CI job on Cirrus does not run into such problems |
Contributor
Author
From the logic of the build script, this issue does exist. I ran some tests locally, and the results support my thinking. Is there anything else I need to adjust? |
Contributor
Author
|
I found the reason. In macos_instance:
image: ghcr.io/cirruslabs/macos-sonoma-xcode:latest
task:
name: AppleM1/LLVM armv8-ios xbuild
......
- make TARGET=ARMV8 NUM_THREADS=32 HOSTCC=clang NOFORTRAN=1 CROSS=1 |
Collaborator
|
Ah, I see - good catch, thank you. |
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.
I tried building for the iOS following the doc and encountered the following error:
Initially, I thought this was caused by the tests being built, so I tried modifying the doc's
maketomake libs. However, I was informed that "Cross-build condition should already prevent running the tests".The original build process didn’t distinguish the
iOSplatform and treated it the same asDarwin. I updated theDarwinbuild process as follows:ctest.c:is_iosvariable inc_check, settingcross=1when it is true.I tested this on a physical device, and the
iOSbuild now works correctly.