github-ci: Drop requirement for GNU find.

This commit is contained in:
Dag-Erling Smørgrav 2024-05-01 11:55:02 +02:00
parent 8e7c117e8f
commit 85e01c4004
4 changed files with 3 additions and 11 deletions

3
.ci.sh
View file

@ -38,7 +38,6 @@ if [[ ${RUNNER_OS} = macOS ]]; then
latest_brew_python3_bin="$(ls -1d /usr/local/Cellar/python/3.*/bin | sort -n | tail -n1)"
export PATH="${latest_brew_python3_bin}${PATH:+:}${PATH}"
export PATH="/usr/local/opt/coreutils/libexec/gnubin${PATH:+:}${PATH}"
export PATH="/usr/local/opt/findutils/libexec/gnubin${PATH:+:}${PATH}"
elif [[ ${RUNNER_OS} = Linux ]]; then
export PATH="/usr/lib/llvm-18/bin:${PATH}"
else
@ -65,7 +64,7 @@ elif [[ ${MODE} = cmake-oos ]]; then
cmake ${CMAKE_ARGS} ..
make VERBOSE=1 CTEST_OUTPUT_ON_FAILURE=1 all test
make DESTDIR="${PWD}"/ROOT install
find ROOT -printf "%P\n" | sort
find ROOT | cut -c 6- | sort
elif [[ ${MODE} = coverage-sh ]]; then
./coverage.sh
else

View file

@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Install runtime dependencies
run: |
exec brew install cppcheck findutils
exec brew install cppcheck
- name: Run Cppcheck
run: |
exec .github/workflows/scripts/mass-cppcheck.sh

View file

@ -31,14 +31,8 @@
PS4='# '
set -e -u -o pipefail -x
if [[ "$(uname -s)" =~ ^Darwin ]]; then
export PATH="/usr/local/opt/findutils/libexec/gnubin${PATH:+:}${PATH}"
fi
cppcheck --version
find --version | head -n1
for xml_context_bytes in 0 1024; do
for xml_ge in 0 1; do
cppcheck_args=(
@ -63,6 +57,6 @@ for xml_context_bytes in 0 1024; do
-exec cppcheck "${cppcheck_args[@]}" {} +
)
time find "${find_args[@]}"
time find . "${find_args[@]}"
done
done

View file

@ -4,7 +4,6 @@ brew "cmake"
brew "coreutils"
brew "docbook2x"
brew "dos2unix"
brew "findutils"
brew "gcc"
brew "gettext"
brew "ghostscript"