From: Ondřej Surý Date: Sat, 11 Mar 2023 04:03:54 +0000 (+0100) Subject: Install liburcu-dev to GitHub Actions X-Git-Tag: v9.19.12~82^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=def02029c0de03c92c1f70d2d6dfac26e2cd6134;p=thirdparty%2Fbind9.git Install liburcu-dev to GitHub Actions The CodeQL and SonarCloud GitHub Actions would FTBFS because of missing liburcu-dev package resulting. Install the required package to both GitHub Action files. --- diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c11c94357e5..32feccd1403 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,7 @@ jobs: - name: Install build dependencies uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: libuv1-dev libssl-dev libnghttp2-dev libxml2-dev liblmdb-dev libjson-c-dev pkg-config autoconf automake autotools-dev libtool-bin libjemalloc-dev libedit-dev libcap-dev libidn2-dev libkrb5-dev libmaxminddb-dev zlib1g-dev python3-ply + packages: liburcu-dev libuv1-dev libssl-dev libnghttp2-dev libxml2-dev liblmdb-dev libjson-c-dev pkg-config autoconf automake autotools-dev libtool-bin libjemalloc-dev libedit-dev libcap-dev libidn2-dev libkrb5-dev libmaxminddb-dev zlib1g-dev python3-ply version: 1.0 # Initializes the CodeQL tools for scanning. diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index a87179a1e8d..05246cc6744 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -30,7 +30,7 @@ jobs: - name: Install build dependencies uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: libuv1-dev libssl-dev libnghttp2-dev libxml2-dev liblmdb-dev libjson-c-dev pkg-config autoconf automake autotools-dev libtool-bin libjemalloc-dev libedit-dev libcap-dev libidn2-dev libkrb5-dev libmaxminddb-dev zlib1g-dev python3-ply + packages: liburcu-dev libuv1-dev libssl-dev libnghttp2-dev libxml2-dev liblmdb-dev libjson-c-dev pkg-config autoconf automake autotools-dev libtool-bin libjemalloc-dev libedit-dev libcap-dev libidn2-dev libkrb5-dev libmaxminddb-dev zlib1g-dev python3-ply version: 1.0 - name: Install sonar-scanner and build-wrapper