mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-03 18:58:30 +00:00
11 lines
190 B
Bash
Executable File
11 lines
190 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
rm -rf build
|
|
meson build --werror
|
|
#build with clang and -Werror
|
|
ninja -C build -v
|
|
#run static analysis (these mostly won't be critical)
|
|
ninja -C build scan-build -v
|