Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-07-27 09:18:09 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-07-28 18:11:30 +0300
commit04ffbb30f24885ee2f4eff3c9353fde565620a5c (patch)
tree1dc349db0bf9d12faa7c58823ccc119532bdec4f /.github
parent820d221c8a94e4f6f8aaa1b6b810164d87d4cb67 (diff)
Avoid scanning 3rd party libraries
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/analysis.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml
index 4dd442cca..392c1b793 100644
--- a/.github/workflows/analysis.yml
+++ b/.github/workflows/analysis.yml
@@ -86,7 +86,17 @@ jobs:
- name: Log environment
run: ./scripts/log-env.sh
- - run: meson setup -Dunit_tests=disabled build
+ - run: |
+ meson setup \
+ -Duse_alsa=false \
+ -Duse_fluidsynth=false \
+ -Duse_mt32emu=false \
+ -Duse_opengl=false \
+ -Duse_png=false \
+ -Duse_sdl2_net=false \
+ -Duse_slirp=false \
+ -Dunit_tests=disabled \
+ build
- name: Build and run scan-build
run: |