File tree Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Expand file tree Collapse file tree 3 files changed +7
-14
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- os : [macos-latest, macos-11 ]
13
+ os : [macos-latest, macos-13 ]
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
- uses : ./
20
20
run : |
21
21
echo "### Dump default.local ###"
22
22
cat /etc/cvmfs/default.local
23
+ sleep 5
23
24
echo "### Try to ls on /Users/Shared/cvmfs/sft.cern.ch/ ###"
24
- ls /Users/Shared/cvmfs/sft.cern.ch/
25
+ ls /Users/Shared/cvmfs/sft.cern.ch/ | grep lcg
25
26
echo "### Try to ls on /cvmfs/sft.cern.ch/ ###"
26
- ls /cvmfs/sft.cern.ch/
27
+ ls /cvmfs/sft.cern.ch/ | grep lcg
Original file line number Diff line number Diff line change @@ -320,13 +320,6 @@ inputs:
320
320
description : ' Location from where to download the Ubuntu deb package of CernVM-FS'
321
321
required : false
322
322
default : ' https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-latest_all.deb'
323
- cvmfs_macos_pkg_location :
324
- description : ' Location from where to download the macOS pkg package of CernVM-FS'
325
- required : false
326
- # default: 'http://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-latest.pkg'
327
- # this nightly build is based on the cvmfs mac-fuse-t branch
328
- # TODO: change back to latest once it is released
329
- default : ' http://ecsft.cern.ch/dist/cvmfs/nightlies/cvmfs-git-1234/cvmfs-2.12.0-0.1234-git-958741c6df468802.pkg'
330
323
cvmfs_config_package :
331
324
description : ' URL to the cvmfs config package to install'
332
325
required : false
Original file line number Diff line number Diff line change @@ -49,11 +49,10 @@ elif [ "$(uname)" == "Darwin" ]; then
49
49
export CVMFS_HTTP_PROXY=' DIRECT'
50
50
fi
51
51
52
- wget -q https://github.com/macos-fuse-t/fuse-t/releases/download/1.0.36/fuse-t-macos-installer-1.0.36.pkg
53
- sudo installer -pkg fuse-t-macos-installer-1.0.36.pkg -target /
52
+ brew tap macos-fuse-t/cask
53
+ brew tap cvmfs/homebrew-cvmfs
54
+ brew install cvmfs
54
55
55
- curl -L -o cvmfs-latest.pkg ${CVMFS_MACOS_PKG_LOCATION}
56
- sudo installer -package cvmfs-latest.pkg -target /
57
56
# / is readonly on macos 11+ - do 'synthetic firmlink' to create /cvmfs
58
57
sudo zsh -c ' echo -e "cvmfs\tUsers/Shared/cvmfs\n#comment\n" > /etc/synthetic.conf'
59
58
sudo chown root:wheel /etc/synthetic.conf
You can’t perform that action at this time.
0 commit comments