-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable experimental support for cvmfs on macos runners (#28)
* Re-enable experimental support for cvmfs on macos runners While macfuse is no longer an option, there is now a nice alternative with fuse-t. This PR adds experimental support (I've successfully tested it with the nightly build, but there is no released cvmfs version with fuse-t support yet). 'Synthetic firmlinks' are used to create /cvmfs , since the root file system is now read-only on macos. One todo: need to check if we actually need the homebrew action or it can be moved somewhere else. * lsb-release only on linux * set id-releas also for macos * direct install of fuse-t instead of using homebrew * update readme * Update action.yml * Update README.md
- Loading branch information
Showing
4 changed files
with
56 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: macOS | ||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '33 3 * * *' | ||
jobs: | ||
macOS-minimal: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, macos-11] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ./ | ||
with: | ||
cvmfs_repositories: 'sft.cern.ch' | ||
- name: Test CernVM-FS | ||
run: | | ||
echo "### Dump default.local ###" | ||
cat /etc/cvmfs/default.local | ||
echo "### Try to ls on /Users/Shared/cvmfs/sft.cern.ch/ ###" | ||
ls /Users/Shared/cvmfs/sft.cern.ch/ | ||
echo "### Try to ls on /cvmfs/sft.cern.ch/ ###" | ||
ls /cvmfs/sft.cern.ch/ |
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
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
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