File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -331,10 +331,11 @@ jobs:
331
331
env :
332
332
TARGET : ${{matrix.cfg.target}}
333
333
steps :
334
- - name : Remove Old lib-unwind
335
- run : if [ "$TARGET" = "linux64" ]; then
336
- sudo apt-get remove libunwind-14 -y;
337
- fi
334
+ # handled by the install script now
335
+ # - name: Remove Old lib-unwind
336
+ # run: if [ "$TARGET" = "linux64" ]; then
337
+ # sudo apt-get remove libunwind-14 -y;
338
+ # fi
338
339
- name : Cache Packages
339
340
uses : awalsh128/cache-apt-pkgs-action@latest
340
341
with :
Original file line number Diff line number Diff line change 206
206
# jammy needs libunwind-dev installed before gstreamer
207
207
# and some additional packages
208
208
if [ $MAJOR_VERSION -gt 21 ]; then
209
- installPackages " libunwind-dev"
210
-
209
+ echo " Ensuring latest libunwind-dev is installed... "
210
+ apt-get ${FORCE_YES} -qq install --only-upgrade libunwind-dev || installPackages libunwind-dev
211
211
PACKAGES+=" libharfbuzz-dev"
212
212
PACKAGES+=" gstreamer1.0-vaapi"
213
213
PACKAGES+=" gstreamer1.0-libav"
You can’t perform that action at this time.
0 commit comments