mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
25 lines
444 B
Bash
Executable File
25 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
# Verify that every tool expected in the Nix CI env is present and runnable.
|
|
set -euo pipefail
|
|
|
|
ccache --version
|
|
clang --version
|
|
clang++ --version
|
|
clang-format --version
|
|
cmake --version
|
|
conan --version
|
|
g++ --version
|
|
gcc --version
|
|
gcovr --version
|
|
git --version
|
|
less --version
|
|
make --version
|
|
mold --version
|
|
ninja --version
|
|
perl --version
|
|
pkg-config --version
|
|
pre-commit --version
|
|
python3 --version
|
|
run-clang-tidy --help
|
|
vim --version
|