From 3f908f429c226d5f6ff1ef4c7c8467200bd1c15e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 23 Oct 2023 10:25:08 +0200 Subject: [PATCH] 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) --- .github/scripts/build_definition.py | 1 - .github/workflows/ci.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/scripts/build_definition.py b/.github/scripts/build_definition.py index 49e1666..39716e3 100644 --- a/.github/scripts/build_definition.py +++ b/.github/scripts/build_definition.py @@ -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 | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7756a77..f02aa9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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