Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ apt-get install -y gdb="${gdb_version}*"

apt-get install -y valgrind="1:${valgrind_version}*"

apt-get install -y ripgrep="${ripgrep_version}*"

# lcov - code coverage reporting for C/C++
apt-get install -y lcov="${lcov_version}*"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ check "validate uvx is working and has the correct version" bash -c "uvx --versi
check "validate gdb is working and has the correct version" bash -c "gdb --version | grep '${gdb_version}'"
check "validate gh is working and has the correct version" bash -c "gh --version | grep '${gh_version}'"
check "validate valgrind is working and has the correct version" bash -c "valgrind --version | grep '${valgrind_version}'"
check "validate ripgrep is working and has the correct version" bash -c "rg --version | grep '${ripgrep_version}'"
if [ "${ARCHITECTURE}" = "amd64" ] || { [ "${ARCHITECTURE}" = "arm64" ] && [ "${KERNEL}" = "Darwin" ]; }; then
check "validate codeql is working and has the correct version" bash -c "codeql --version | grep '${codeql_version}'"
check "validate CODEQL_HOME is set correctly" bash -c "echo ${CODEQL_HOME} | grep \"/usr/local/codeql\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,7 @@ codeql_coding_standards:
version: 2.54.0
valgrind:
version: 3.22.0
ripgrep:
version: 14.1.0
lcov:
version: 2.0