From 084d7633adb8251e58cfd4067a852d2c8672625c Mon Sep 17 00:00:00 2001 From: Aleksei Nikiforov Date: Thu, 6 Nov 2025 13:49:19 +0100 Subject: [PATCH] s390x ci: debug build issue --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 15e1133095213..e89cfc86721f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -221,10 +221,22 @@ jobs: - name: Python Dependencies id: python_depends + if: ${{ matrix.build != 's390x' }} run: | python3 -m pip install --upgrade pip pip3 install ./gguf-py + - name: Python Dependencies s390x + id: python_depends_s390x + if: ${{ matrix.build == 's390x' }} + run: | + sudo apt-get install -y --no-install-recommends \ + file + file /usr/local/bin/ninja + file /usr/local/bin/* + python3 -m pip install --upgrade pip + pip3 -vvv install ./gguf-py + - name: Swap Endianness id: endianness if: ${{ matrix.build == 's390x' }}