silverstripe / gha-ci

GitHub Actions Workflow - CI for Silverstripe modules
BSD 3-Clause "New" or "Revised" License
0 stars 11 forks source link

FIX Don't try to install uninstallable libasound2 #154

Closed GuySartorelli closed 1 month ago

GuySartorelli commented 1 month ago

Fixes https://github.com/silverstripe/recipe-kitchen-sink/actions/runs/11060345315/job/30730719567

Package 'libasound2' has no installation candidate

libasound2 isn't installable on its own for Ubuntu 24 which is the new ubuntu:latest in GitHub Actions, which is what we set all our CI to use.

I've read a bunch of places that people tried installing one of the packages that the error message says includes it, but they either couldn't install them or found they still had errors.

Tested this PR in https://github.com/creative-commoners/recipe-kitchen-sink/actions/runs/11061184264 and things are going green! Remaining CI failures in that build aren't related.

Issue