summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Langley <mightyjo@gmail.com>2021-06-09 22:42:21 -0400
committerWill Estes <westes575@gmail.com>2021-08-13 11:16:11 -0400
commitaf75357b170ee7c7a67e911e31fef66dc6798332 (patch)
tree4478a1fcc9313417b168480eec65d81a10733814
parentb198864a75f73f1a125a048919fa849710d10fe0 (diff)
downloadflex-git-af75357b170ee7c7a67e911e31fef66dc6798332.tar.gz
Update codeql-analysis.yml
-rw-r--r--.github/workflows/codeql-analysis.yml17
1 files 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