Skip to content

Commit cda088b

Browse files
committed
ci: install binutils for pyinstaller builds
1 parent 5047c52 commit cda088b

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,13 @@ jobs:
5454
with:
5555
python-version: '3.12'
5656

57-
- name: Install dependencies
57+
- name: Install system dependencies
58+
if: ${{ matrix.emulated == false }}
59+
run: |
60+
sudo apt-get update
61+
sudo apt-get install -y binutils
62+
63+
- name: Install Python dependencies
5864
if: ${{ matrix.emulated == false }}
5965
run: |
6066
python -m pip install --upgrade pip
@@ -92,6 +98,8 @@ jobs:
9298
-v "$PWD":/workspace \
9399
-w /workspace \
94100
python:3.12-slim bash -c "
101+
apt-get update &&
102+
apt-get install -y binutils &&
95103
python -m pip install --upgrade pip &&
96104
pip install -r requirements.txt pyinstaller pytest pytest-cov &&
97105
chmod +x build.sh &&

0 commit comments

Comments
 (0)