Skip to content

Commit

Permalink
feat: update dependencies in release workflow
Browse files Browse the repository at this point in the history
Add libffi-dev to fix missing ffi.h file during build process. Update the
installation command in the release workflow to include libffi-dev package.
This change ensures that the build process completes successfully by providing
the necessary dependency for building '_cffi_backend' extension.
  • Loading branch information
25077667 committed May 18, 2024
1 parent 3dd998b commit c428890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
copy_artifact_path: cg-${{ matrix.arch }}.elf
commands: |
apt-get update -y
apt-get install python3-dev python3 python3-pip patchelf ccache -y --no-install-recommends
apt-get install python3-dev python3 python3-pip patchelf ccache libffi-dev -y --no-install-recommends
pip install poetry --break-system-packages
poetry install
df -h
Expand Down

0 comments on commit c428890

Please sign in to comment.