Re-enable experimental support for cvmfs on macos runners #118
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_config_package | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
cvmfs_repositories: 'pilot.eessi-hpc.org' | |
cvmfs_http_proxy: 'DIRECT' | |
cvmfs_config_package: 'https://github.com/EESSI/filesystem-layer/releases/download/v0.4.0/cvmfs-config-eessi_0.4.0_all.deb' | |
- name: Test CernVM-FS | |
run: | | |
echo "### Dump default.local ###" | |
cat /etc/cvmfs/default.local | |
echo "### Try cvmfs_config probe ###" | |
sudo cvmfs_config probe | |
echo "### Test /cvmfs/pilot.eessi-hpc.org ###" | |
ls /cvmfs/pilot.eessi-hpc.org | |
echo "### Test cvmfs_config showconfig pilot.eessi-hpc.org ###" | |
cvmfs_config showconfig pilot.eessi-hpc.org |