From af4b7299184192a2ea7d0435784ec3672d26211c Mon Sep 17 00:00:00 2001 From: "Roscoe A. Bartlett" Date: Thu, 22 Jul 2021 11:15:54 -0600 Subject: [PATCH] Print the ninja path and version (#363) CMake or TriBITS does not show this version info anywhere that I know of already on CDash. --- .github/workflows/tribits_testing.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tribits_testing.yml b/.github/workflows/tribits_testing.yml index d31091a2c..377e3e625 100644 --- a/.github/workflows/tribits_testing.yml +++ b/.github/workflows/tribits_testing.yml @@ -59,9 +59,12 @@ jobs: pip3 install sphinx sphinx-rtd-theme # For testing doc build - name: Version checks run: | - echo "Checking Cmake path and version" + echo "Checking cmake path and version" which cmake cmake --version + echo "Checking ninja path and version" + which ninja + ninja --version echo "Checking gcc path and version" which ${{ matrix.config.cc }} ${{ matrix.config.cc }} --version