mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
2dfd9518e1
They cause too much noise at the moment. I want to make scan-build messages fatal, and with 66 of 238 reports coming from the tests, that’s not currently feasible. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #1767
15 lines
363 B
Bash
Executable File
15 lines
363 B
Bash
Executable File
#!/usr/bin/env bash
|
||
#
|
||
# Copyright 2024 GNOME Foundation, Inc.
|
||
#
|
||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
#
|
||
# Original author: Philip Withnall
|
||
|
||
set -eu
|
||
|
||
# This script just exists so that we can set the scan-build flags in
|
||
# .gitlab-ci.yml and pass them into Meson’s `scan-build` target.
|
||
|
||
# shellcheck disable=SC2086
|
||
exec scan-build ${SCAN_BUILD_FLAGS:-} "$@" |