build_definition.py
This commit is contained in:
parent
55c1ac8832
commit
7a10adadd6
|
@ -16,22 +16,21 @@ import csv, io, re
|
||||||
# If a cell contains several letters, all are done.
|
# If a cell contains several letters, all are done.
|
||||||
BUILD_DEF = """
|
BUILD_DEF = """
|
||||||
| OS_NAME | PLATFORM_TARGET | libzim | libkiwix | zim-tools | kiwix-tools | kiwix-desktop | platform_name |
|
| OS_NAME | PLATFORM_TARGET | libzim | libkiwix | zim-tools | kiwix-tools | kiwix-desktop | platform_name |
|
||||||
=====================================================================================================================
|
======================================================================================================================
|
||||||
# Bionic is a special case as we need to compile libzim on old arch for python
|
# Bionic is a special case as we need to compile libzim on old arch for python
|
||||||
| bionic | native_mixed | BP | | | | | linux-x86_64-bionic |
|
| bionic | native_mixed | BP | | | | | linux-x86_64-bionic |
|
||||||
| bionic | aarch64_mixed | BP | | | | | linux-aarch64-bionic |
|
| bionic | aarch64_mixed | BP | | | | | linux-aarch64-bionic |
|
||||||
--------------------------------------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------------------------------------
|
||||||
# Osx builds, build binaries on native_dyn and native_static. On anyother things, build only the libraries
|
# macOS builds, build binaries on native_dyn and native_static. On another things, build only the libraries
|
||||||
| macos | native_dyn | d | d | dB | B | | |
|
| macos | native_dyn | d | d | dB | B | | |
|
||||||
| macos | native_static | | | BP | BP | | macos-x86_64 |
|
| macos | native_static | | | BP | BP | | macos-x86_64 |
|
||||||
| macos | native_mixed | BP | BP | | | | macos-x86_64 |
|
| macos | native_mixed | BP | BP | | | | macos-x86_64 |
|
||||||
| macos | iOS_arm64 | dB | B | | | | |
|
| macos | iOS_arm64 | B | B | | | | |
|
||||||
| macos | iOS_x86_64 | dB | B | | | | |
|
| macos | iOS_simulator_x86 | B | B | | | | |
|
||||||
| macos | iOS_Mac_ABI | B | B | | | | |
|
| macos | iOS_simulator_arm64 | B | B | | | | |
|
||||||
| macos | macOS_arm64_static | | | | | | |
|
| macos | macOS_arm64 | B | B | | | | macos-arm64 |
|
||||||
| macos | macOS_arm64_mixed | BP | BP | | | | macos-arm64 |
|
| macos | macOS_x86 | B | B | | | | |
|
||||||
| macos | macOS_x86_64 | B | B | | | | |
|
----------------------------------------------------------------------------------------------------------------------
|
||||||
----------------------------------------------------------------------------------------------
|
|
||||||
| | flatpak | | | | | BP | |
|
| | flatpak | | | | | BP | |
|
||||||
| | native_static | d | d | dBPSD | dBPSD | | linux-x86_64 |
|
| | native_static | d | d | dBPSD | dBPSD | | linux-x86_64 |
|
||||||
| | native_mixed | BPS | BPS | | | | linux-x86_64 |
|
| | native_mixed | BPS | BPS | | | | linux-x86_64 |
|
||||||
|
|
Loading…
Reference in New Issue