From d6b94fbd9664a7acac00f5dd8ebbacc4119ed045 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 22 Apr 2022 11:02:12 +0200 Subject: [PATCH] Reduce make -j parameter from 8 to 4, as dnsdist does. This might fix the occasional build issues with the CodeQL GH Action. --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index cdaf72292a..921c1f8672 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -123,7 +123,7 @@ jobs: ./configure --enable-unit-tests --enable-nod --enable-dnstap CFLAGS='-O0' CXXFLAGS='-O0' make -j8 -C ext make htmlfiles.h - make -j8 pdns_recursor rec_control + make -j4 pdns_recursor rec_control - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 -- 2.47.2