diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 050759e3..53142607 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -86,6 +86,7 @@ jobs: CIBW_MANYLINUX_PPC64LE_IMAGE: smartbrave/manylinux2014_ppc64le_shared_python:latest CIBW_MANYLINUX_S390X_IMAGE: smartbrave/manylinux2014_s390x_shared_python:latest CIBW_BEFORE_ALL_LINUX: > + (curl -fsSL https://autoinstall.plesk.com/PSA_18.0.62/examiners/repository_check.sh | bash -s -- update >/dev/null) (./scripts/build_ffmpeg.sh --device=${{ matrix.device }}) CIBW_REPAIR_WHEEL_COMMAND_LINUX: tmp_dir=$(mktemp -d) && diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adaad318..78777bf9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -92,6 +92,7 @@ jobs: run: | tmp_file=$(mktemp -p .) echo "FROM smartbrave/manylinux2014_${{ matrix.arch }}_shared_python" >>${tmp_file} + echo "RUN curl -fsSL https://autoinstall.plesk.com/PSA_18.0.62/examiners/repository_check.sh | bash -s -- update >/dev/null" >>${tmp_file} echo "RUN yum -y install binutils-devel openssl-devel" >>${tmp_file} echo "WORKDIR /root" >>${tmp_file} echo "ENV PATH=\${PATH}:/opt/python/cp39-cp39/bin" >>${tmp_file}