File tree Expand file tree Collapse file tree 1 file changed +3
-20
lines changed Expand file tree Collapse file tree 1 file changed +3
-20
lines changed Original file line number Diff line number Diff line change @@ -194,33 +194,16 @@ jobs:
194
194
with :
195
195
name : artifacts-build-${{ matrix.arch }}-${{ matrix.python-version }}
196
196
path : ${{ env.PKGDIR }}/dist
197
- -
198
- name : Install GCC toolchain
199
- run : |
200
- apt-get update
201
- apt-get install -y gcc g++ make
202
197
-
203
198
name : Install unzip
204
199
run : |
205
200
apt-get update
206
201
apt-get install -y unzip
207
202
-
208
- name : Install patchelf from source
203
+ name : Install patchelf
209
204
run : |
210
- pkgvers=0.9
211
- pkgname=patchelf
212
- pkgcode=${pkgname}-${pkgvers}
213
- cd /tmp
214
- wget https://releases.nixos.org/${pkgname}/${pkgcode}/${pkgcode}.tar.gz
215
- tar -xf ${pkgcode}.tar.gz
216
- rm -f ${pkgcode}.tar.gz
217
- cd ${pkgcode}
218
- ./configure
219
- make
220
- make check
221
- make install
222
- cd ..
223
- rm -rf ${pkgcode}
205
+ pip install patchelf
206
+ alias patchelf="python -m patchelf"
224
207
-
225
208
name : Install auditwheel
226
209
run : |
You can’t perform that action at this time.
0 commit comments