Skip to content

Commit

Permalink
WIP: Add step to check and try to update git repo tags
Browse files Browse the repository at this point in the history
Seems that GitHub actions removed tag info with its git clone.  We want those
tags back.
  • Loading branch information
bartlettroscoe committed Jul 25, 2023
1 parent 644540a commit c3351fc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tribits_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 origin
echo "git tag"
git tag
- name: Run configure, build, test, and submit to CDash
run: |
cd ..
Expand Down

0 comments on commit c3351fc

Please sign in to comment.