Add support for building iOS wheels. #2286
Merged
Travis CI / Travis CI - Pull Request
succeeded
Mar 11, 2025 in 1h 9m 54s
Build Passed
The build passed. This is a change from the previous build, which errored.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #2286 Add support for building iOS wheels..
Any changes that have been made to the main branch before the build ran are also included.
Jobs and Stages
This build has five jobs, running in parallel.
Job | Python | ENV | OS | State | Notes |
---|---|---|---|---|---|
3.12 | PYTHON=python | Linux | passed | ||
3.12 | PYTHON=python | Linux | passed | ||
PYTHON=C:\\Python312\\python | windows | passed | |||
3.12 | PYTHON=python | Linux | canceled | This job is allowed to fail. | |
3.12 | PYTHON=python | Linux | canceled | This job is allowed to fail. |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Jammy) |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "jammy",
"branches": {
"only": [
"main"
]
},
"jobs": {
"include": [
{
"name": "Linux | x86_64 + i686 | Python 3.12",
"python": "3.12",
"services": [
"docker"
],
"env": [
{
"PYTHON": "python"
}
]
},
{
"name": "Linux | arm64 | Python 3.12",
"python": "3.12",
"services": [
"docker"
],
"arch": "arm64",
"env": [
{
"PYTHON": "python"
}
]
},
{
"name": "Linux | ppc64le | Python 3.12",
"python": "3.12",
"services": [
"docker"
],
"arch": "ppc64le",
"allow_failure": true,
"env": [
{
"PYTHON": "python"
},
{
"PYTEST_ADDOPTS": "'-k \"not test_manylinuxXXXX_only\"'"
}
]
},
{
"name": "Windows | x86_64 | Python 3.12",
"os": "windows",
"language": "shell",
"before_install": [
"choco upgrade python3 -y --version 3.12.8 --limit-output --params \"/InstallDir:C:\\\\Python312\""
],
"env": [
{
"PYTHON": "C:\\\\Python312\\\\python"
}
]
},
{
"name": "Linux | s390x | Python 3.12",
"python": "3.12",
"services": [
"docker"
],
"arch": "s390x",
"allow_failure": true,
"env": [
{
"PYTHON": "python"
}
]
}
]
},
"install": [
"if [ \"${TRAVIS_OS_NAME}\" == \"linux\" ]; then docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all; fi",
"$PYTHON -m pip install -U pip dependency-groups",
"$PYTHON -m dependency_groups test | xargs $PYTHON -m pip install -e."
],
"script": [
"# travis_wait disable the output while waiting\n# use the same kind of tricks as in multibuild\n(while true; do echo \"travis_keep_alive\"; sleep 300; done) &\nSPINNER_PID=$!\ndisown\nresult=0\n$PYTHON ./bin/run_tests.py --num-processes 2 || result=1\nkill -9 ${SPINNER_PID}\ntest ${result} -eq 0"
]
}
Loading