Remove `x86-64_musl_dyn` from the CI.
This target fails on the CI because of conflict between the builded libraries (lzma, libz) and native library. As they are both for the same arch but with different libc, python tries to load them and fails. There is a real bug somewhere in our toolchain but we need to build for x86_64 musl right now and this is done in `x86-64_musl_mixed` which pass. So let's remove it for now. (`x86-64_musl_dyn` fails with the docker image. It is ok with native (fedora 38) system)
This commit is contained in:
parent
9a2a9ca188
commit
3f908f429c
|
@ -55,7 +55,6 @@ BUILD_DEF = """
|
|||
| | aarch64_musl_dyn | d | | B | B | | |
|
||||
| | x86-64_musl_static | | | BP | BP | | linux-x86-64-musl |
|
||||
| | x86-64_musl_mixed | BP | | | | | linux-x86-64-musl |
|
||||
| | x86-64_musl_dyn | d | | B | B | | |
|
||||
| | win32_static | d | dB | dBP | dBP | | win-i686 |
|
||||
| | win32_dyn | d | dB | dB | dB | | |
|
||||
| | i586_static | | | BP | BP | | linux-i586 |
|
||||
|
|
|
@ -28,7 +28,6 @@ jobs:
|
|||
- aarch64_musl_dyn
|
||||
- aarch64_musl_mixed
|
||||
- x86-64_musl_static
|
||||
- x86-64_musl_dyn
|
||||
- x86-64_musl_mixed
|
||||
- i586_static
|
||||
- i586_dyn
|
||||
|
|
Loading…
Reference in New Issue