Skip to content

Commit

Permalink
chore: Fix conditional statement in build-static.yml for x86_64h arch…
Browse files Browse the repository at this point in the history
…itecture
  • Loading branch information
khb7840 committed Aug 9, 2024
1 parent 2f649fd commit 2aa336d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
run: |
for i in arm64 x86_64 x86_64h; do
LIBOMP=$(brew --prefix libomp)
if [ "$i" = "x86_64" ] || ["$i" = "x86_64h"]; then
if [ "$i" = "x86_64" ] || [ "$i" = "x86_64h" ]; then
LIBOMP=${{github.workspace}}/libomp_x86_64
fi
cmake -B build_${i} -DCMAKE_OSX_ARCHITECTURES=${i} \
Expand Down

0 comments on commit 2aa336d

Please sign in to comment.