diff options
author | bashonly <bashonly@protonmail.com> | 2024-02-11 15:24:41 +0100 |
---|---|---|
committer | Simon Sawicki <contact@grub4k.xyz> | 2024-02-11 19:09:03 +0100 |
commit | 920397634d1e84e76d2cb897bd6d69ba0c6bd5ca (patch) | |
tree | fef7663c9d678bcd7904c00dfb71db28f39dfa9b | |
parent | b8a433aaca86b15cb9f1a451b0f69371d2fc22a9 (diff) |
[build] Fix `secretstorage` for ARM builds
Authored by: bashonly
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 082164c9e..0c2b0f684 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -199,10 +199,10 @@ jobs: dockerRunArgs: --volume "${PWD}/repo:/repo" install: | # Installing Python 3.10 from the Deadsnakes repo raises errors apt update - apt -y install zlib1g-dev python3.8 python3.8-dev python3.8-distutils python3-pip + apt -y install zlib1g-dev libffi-dev python3.8 python3.8-dev python3.8-distutils python3-pip python3.8 -m pip install -U pip setuptools wheel # Cannot access any files from the repo directory at this stage - python3.8 -m pip install -U Pyinstaller mutagen pycryptodomex websockets brotli certifi secretstorage + python3.8 -m pip install -U Pyinstaller mutagen pycryptodomex websockets brotli certifi secretstorage cffi run: | cd repo |