From dcc66b14dbd1c1667b106e9c5169bcd2b670074e Mon Sep 17 00:00:00 2001 From: Markus Gans Date: Fri, 2 Oct 2020 02:23:00 +0200 Subject: [PATCH] Update codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 496581e5..72fd0efd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -58,11 +58,17 @@ jobs: # and modify them (or add more) to build your code if your project # uses a compiled language - - run: | - apt-get install autoconf-archive - autoreconf -v --install --force - ./configure --prefix=/usr CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG -W -Wall -pedantic" - make V=1 -j10 + - name: Build dependencies + run: apt-get install autoconf-archive + + - name: Create configure file + run: autoreconf -v --install --force + + - name: Create makefiles + run: ./configure --prefix=/usr CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG -W -Wall -pedantic" + + - name: Build + run: make V=1 -j10 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1