Re-enable experimental support for cvmfs on macos runners #132
Workflow file for this run
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: with cvmfs_repositories | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
cvmfs_repositories: 'grid.cern.ch' | |
- name: Test CernVM-FS | |
run: | | |
echo "### Dump default.local ###" | |
cat /etc/cvmfs/default.local | |
echo "### Check if grid.cern.ch is in default.local ###" | |
grep grid.cern.ch /etc/cvmfs/default.local | |
echo "### Try to ls on /cvmfs/grid.cern.ch/ ###" | |
ls /cvmfs/grid.cern.ch/ | |
echo "### Try cvmfs_config probe ###" | |
sudo cvmfs_config probe |