From af75357b170ee7c7a67e911e31fef66dc6798332 Mon Sep 17 00:00:00 2001 From: Joseph Langley Date: Wed, 9 Jun 2021 22:42:21 -0400 Subject: Update codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 77d7630..21021fe 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -40,7 +40,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 -/b + - name: Apt + run: sudo apt-get install gcc autoconf bison gettext autopoint help2man lzip texinfo texlive + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 @@ -53,8 +55,8 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 + #- name: Autobuild + # uses: github/codeql-action/autobuild@v1 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -63,9 +65,12 @@ jobs: # and modify them (or add more) to build your code if your project # uses a compiled language - #- run: | - # make bootstrap - # make release + - name: Build + run: | + ./autogen.sh + ./configure + make + make check - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 -- cgit v1.2.1