Checking cmake provision from cvmfs #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: halld_recon | |
on: | |
push: | |
branches: [rasool_gluex_ci_testing] | |
pull_request: | |
branches: [rasool_gluex_ci_testing] | |
jobs: | |
jana2_halld_recon: | |
name: halld_recon | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@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: 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 |