Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down