mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
a33c7d23d6
Previously we were running clang-format across multiple operating system versions and hence clang versions, and it turns out clang has changed the preferred formatting multiple times. We could *probably* dig in and try to pin things more strongly but eh...for now let's arbitrarily just use whatever's in the default GH Action ubuntu-latest runner as that should be equally painful for everyone. Signed-off-by: Colin Walters <walters@verbum.org>
27 lines
692 B
Bash
Executable File
27 lines
692 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tests that validate structure of the source code;
|
|
# can be run without building it.
|
|
set -euo pipefail
|
|
|
|
# Don't hard require Rust
|
|
if command -v cargo >/dev/null; then
|
|
echo -n "checking rustfmt... "
|
|
for crate in $(find -iname Cargo.toml); do
|
|
if ! cargo fmt --manifest-path ${crate} -- --check; then
|
|
echo "cargo fmt failed; run: cd $(dirname ${crate}) && cargo fmt" 1>&2
|
|
exit 1
|
|
fi
|
|
done
|
|
echo "ok"
|
|
fi
|
|
|
|
echo -n 'grep-based static analysis... '
|
|
patterns=(glnx_fd_close)
|
|
for pat in "${patterns[@]}"; do
|
|
if git grep "${pat}" | grep -v codestyle\.sh; then
|
|
echo "Files matched prohibited pattern: ${pat}" 1>&2
|
|
exit 1
|
|
fi
|
|
done
|
|
echo ok
|