Update codeql-analysis.yml

This commit is contained in:
Markus Gans 2020-10-02 02:23:00 +02:00 committed by GitHub
parent 021cd12d58
commit dcc66b14db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 5 deletions

View File

@ -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