Skip to content

Commit

Permalink
checking github workspace value
Browse files Browse the repository at this point in the history
  • Loading branch information
RaiqaRasool committed Jul 22, 2024
1 parent b088500 commit 0d97d54
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/halld_recon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,27 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: cvmfs-contrib/github-action-cvmfs@v4
# - uses: cvmfs-contrib/github-action-cvmfs@v4

- name: Test CernVM-FS
run: |
ls /cvmfs/lhcb.cern.ch
ls /cvmfs/auger.egi.eu
ls /cvmfs/dune.opensciencegrid.org
ls /cvmfs/sw.hsf.org
ls /cvmfs/sft.cern.ch
# - name: Test CernVM-FS
# run: |
# ls /cvmfs/lhcb.cern.ch
# ls /cvmfs/auger.egi.eu
# ls /cvmfs/dune.opensciencegrid.org
# ls /cvmfs/sw.hsf.org
# ls /cvmfs/sft.cern.ch

# - name: Check CMake Installation
# run: |
# if command -v cmake >/dev/null 2>&1; then
# echo "CMake is installed."
# cmake --version
# else
# echo "CMake is not installed."
# exit 1
# fi

- name: Check CMake Installation
- name: checking Current dir structure
run: |
if command -v cmake >/dev/null 2>&1; then
echo "CMake is installed."
cmake --version
else
echo "CMake is not installed."
exit 1
fi
echo $GITHUB_WORKSPACE
ls $GITHUB_WORKSPACE

0 comments on commit 0d97d54

Please sign in to comment.