File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 43
43
# Cache roswell - Based on code from 40ants
44
44
# broken on Windows due to sudo and paths
45
45
- name : Cache setup
46
- if : runner.os != 'Windows'
46
+ if : runner.os != 'Windows' && runner.os != 'macOS'
47
47
id : cache-setup
48
48
run : |
49
49
sudo mkdir -p /usr/local/etc/roswell
52
52
sudo chown "${USER}" /usr/local/bin
53
53
echo "value=$(date -u "+%Y-%m")" >> $GITHUB_OUTPUT
54
54
- name : Cache Roswell Setup
55
- if : runner.os != 'Windows'
55
+ if : runner.os != 'Windows' && runner.os != 'macOS'
56
56
id : cache
57
57
uses : actions/cache@v3
58
58
env :
@@ -69,10 +69,10 @@ jobs:
69
69
run : |
70
70
echo $HOME/.roswell/bin >> $GITHUB_PATH
71
71
echo .qlot/bin >> $GITHUB_PATH
72
- if : runner.os != 'Windows' && steps.cache.outputs.cache-hit == 'true'
72
+ if : runner.os != 'Windows' && runner.os != 'macOS' && steps.cache.outputs.cache-hit == 'true'
73
73
# Install roswell with setup-lisp
74
74
- uses : 40ants/setup-lisp@v2
75
- if : runner.os == 'Windows' || steps.cache.outputs.cache-hit != 'true'
75
+ if : runner.os == 'Windows' || runner.os == 'macOS' || steps.cache.outputs.cache-hit != 'true'
76
76
77
77
- name : Configure Coverage
78
78
# Only gather code coverage on Linux-SBCL
You can’t perform that action at this time.
0 commit comments