Skip to content

Commit 1f640f0

Browse files
committed
deploy: fix for clang 14
1 parent 70a5510 commit 1f640f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,10 @@ jobs:
128128
run: |
129129
# OpenMP libraries are not installed by default on macos
130130
clang --version
131-
clang --version | grep "13\."
131+
clang --version | grep "\(13\.\|14\.\)"
132132
# hardcoded, not ideal
133133
# https://mac.r-project.org/openmp/
134+
# This includes only the dynamic library
134135
curl -O https://mac.r-project.org/openmp/openmp-13.0.0-darwin21-Release.tar.gz
135136
sudo tar fvxz openmp-13.0.0-darwin21-Release.tar.gz -C /
136137
ls /usr/local/lib

0 commit comments

Comments
 (0)