From edd19d4725153e6428e7b2e1b6594b4168601a39 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 30 Dec 2020 10:56:02 -0800 Subject: [PATCH] build-system: fix Coverity script Trying to keep the different build environments consistent I messed up and dropped wget and curl from the Coverity build. Moving them to the beginning of the list so they stand out more. Signed-off-by: Dirk Hohndel --- .github/workflows/coverity-scan.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 4b81ca512..482581738 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -17,6 +17,7 @@ jobs: run: | apt update apt install -y \ + wget curl \ autoconf automake cmake g++ git libcrypto++-dev libcurl4-gnutls-dev \ libgit2-dev libqt5qml5 libqt5quick5 libqt5svg5-dev \ libqt5webkit5-dev libsqlite3-dev libssh2-1-dev libssl-dev libssl-dev \