From d9e5d08903d35209c4e8a738bfb6ec00c97cf31b Mon Sep 17 00:00:00 2001 From: "Roscoe A. Bartlett" Date: Tue, 25 Jul 2023 16:04:14 -0600 Subject: [PATCH] WIP: Add step to check and try to update git repo tags Seems that GitHub actions removed tag info with its git clone. We want those tags back. --- .github/workflows/tribits_testing.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/tribits_testing.yml b/.github/workflows/tribits_testing.yml index 0d013711f..9b72b001c 100644 --- a/.github/workflows/tribits_testing.yml +++ b/.github/workflows/tribits_testing.yml @@ -74,6 +74,18 @@ jobs: which ${{ matrix.config.cxx }} ${{ matrix.config.cxx }} --version if [ "${{ matrix.config.fc }}" = "" ]; then echo "No fortran compiler"; else echo "Checking gfortran path and version" && which ${{ matrix.config.fc }} && ${{ matrix.config.fc }} --version; fi + - name: Check state of git repo + run: | + echo "git status" + git status + echo "git remote -v" + git remote -v + echo "git tag" + git tag + echo "git fetch origin" + git fetch orign + echo "git tag" + git tag - name: Run configure, build, test, and submit to CDash run: | cd ..