Skip to content

Commit

Permalink
try fix build tools info check
Browse files Browse the repository at this point in the history
  • Loading branch information
nic11 committed Dec 22, 2024
1 parent 6491e2d commit 5c1bff2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pr-ubuntu-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,13 @@ jobs:
docker commit prepare_deps_container localhost/buildimage
- name: Debug - check build tools
image: localhost/buildimage
options: |
-v ${{github.workspace}}:/src
run: |
print_info() {
print_info_unsafe() {
echo
echo
echo "=== Checking $1 ==="
out="`which $1`"
ret="$?"
Expand All @@ -73,6 +78,10 @@ jobs:
"$out" --version
}
print_info() {
print_info_unsafe "$@" || true
}
print_info clang++
print_info cmake
print_info ninja
Expand Down

0 comments on commit 5c1bff2

Please sign in to comment.