We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5047c52 commit cda088bCopy full SHA for cda088b
1 file changed
.github/workflows/build.yml
@@ -54,7 +54,13 @@ jobs:
54
with:
55
python-version: '3.12'
56
57
- - name: Install dependencies
+ - 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
64
if: ${{ matrix.emulated == false }}
65
run: |
66
python -m pip install --upgrade pip
@@ -92,6 +98,8 @@ jobs:
92
98
-v "$PWD":/workspace \
93
99
-w /workspace \
94
100
python:3.12-slim bash -c "
101
+ apt-get update &&
102
+ apt-get install -y binutils &&
95
103
python -m pip install --upgrade pip &&
96
104
pip install -r requirements.txt pyinstaller pytest pytest-cov &&
97
105
chmod +x build.sh &&
0 commit comments