Skip to content

Commit

Permalink
codeql-analysis.yml: Also build using the Make build system
Browse files Browse the repository at this point in the history
  • Loading branch information
edmonds committed Mar 3, 2024
1 parent a30d2b9 commit 9819f69
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
language: [ 'c-cpp' ]
autobuild_force_build_system: ['cmake', 'meson']
autobuild_force_build_system: ['cmake', 'make', 'meson']

steps:
- name: Checkout repository
Expand All @@ -34,6 +34,11 @@ jobs:
run: |
rm -vrf Makefile* meson.build
- name: Maybe remove non-Make build systems
if: matrix.autobuild_force_build_system == 'make'
run: |
rm -vrf CMakeLists.txt cmake/ meson.build
- name: Maybe remove non-Meson build systems
if: matrix.autobuild_force_build_system == 'meson'
run: |
Expand Down

0 comments on commit 9819f69

Please sign in to comment.