Skip to content

Commit

Permalink
Explicitly define build process for CodeQL analysis
Browse files Browse the repository at this point in the history
The build failed because the automatic build installed Pandoc, which
made the build try to build PDF documentation, but some LaTeX
components were missing. There's no point in building the PDF at all
during this workflow.
  • Loading branch information
airtower-luna committed Feb 26, 2024
1 parent c2617fe commit 1c389b9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ jobs:
uses: github/codeql-action/init@v3
with:
languages: cpp
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: autoreconf
run: autoreconf -fiv
- name: configure
run: ./configure --disable-pdf-doc
- name: make
run: make -j4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit 1c389b9

Please sign in to comment.