File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -331,10 +331,11 @@ jobs:
331331 env :
332332 TARGET : ${{matrix.cfg.target}}
333333 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
338339 - name : Cache Packages
339340 uses : awalsh128/cache-apt-pkgs-action@latest
340341 with :
Original file line number Diff line number Diff line change 206206# jammy needs libunwind-dev installed before gstreamer
207207# and some additional packages
208208if [ $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
211211PACKAGES+=" libharfbuzz-dev"
212212PACKAGES+=" gstreamer1.0-vaapi"
213213PACKAGES+=" gstreamer1.0-libav"
You can’t perform that action at this time.
0 commit comments