Files
stockfish/.github/ci/arm_matrix.json
T
Joost VandeVondele 41f3557db9 Further binary releases fixes
* .tar -> .tar.gz: save a few more MB in distribution.
* drop android armv7 without NEON support: there should be almost no devices around that do not support this.

closes https://github.com/official-stockfish/Stockfish/pull/6850

No functional change
2026-05-25 11:20:01 +02:00

43 lines
886 B
JSON

{
"config": [
{
"name": "Android NDK aarch64",
"os": "ubuntu-22.04",
"simple_name": "android",
"compiler": "aarch64-linux-android29-clang++",
"emu": "qemu-aarch64",
"comp": "ndk",
"shell": "bash",
"archive_ext": "tar.gz"
},
{
"name": "Android NDK arm",
"os": "ubuntu-22.04",
"simple_name": "android",
"compiler": "armv7a-linux-androideabi29-clang++",
"emu": "qemu-arm",
"comp": "ndk",
"shell": "bash",
"archive_ext": "tar.gz"
}
],
"binaries": [
"armv8-universal",
"armv7-neon"
],
"exclude": [
{
"binaries": "armv8-universal",
"config": {
"compiler": "armv7a-linux-androideabi29-clang++"
}
},
{
"binaries": "armv7-neon",
"config": {
"compiler": "aarch64-linux-android29-clang++"
}
}
]
}