From: Emil Velikov Date: Sun, 11 May 2025 18:34:52 +0000 (+0100) Subject: ci: install curl in Ubuntu container X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a16f5c4a6ffb1aaee834048d2cc72565182b5e31;p=thirdparty%2Fkmod.git ci: install curl in Ubuntu container With codecov v5, the script/action requires curl (and maybe more) although the documentation wasn't updated. Furthermore, the missing program will be reported in the logs, while the action will report overall success :facepalm: Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/347 Signed-off-by: Lucas De Marchi --- diff --git a/.github/actions/setup-os/setup-ubuntu.sh b/.github/actions/setup-os/setup-ubuntu.sh index 8adfb6ac..fc1ba89d 100755 --- a/.github/actions/setup-os/setup-ubuntu.sh +++ b/.github/actions/setup-os/setup-ubuntu.sh @@ -9,6 +9,7 @@ export TZ=Etc/UTC apt-get update apt-get install --yes \ build-essential \ + curl \ clang \ gcc-multilib \ gcovr \