Skip to content

Commit

Permalink
install zstd on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Aug 25, 2024
1 parent cf89323 commit 3c25dde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/macos-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
contents: write
steps:
- name: Install required tools
run: brew install ninja
run: brew install ninja zstd

- name: Clone MaterializeInc/toolchains repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -98,6 +98,8 @@ jobs:
- name: package toolchain
run: |
mkdir package package/bin package/lib package/include
cat clang/bin.txt
cat clang/bin.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval cp -rP llvm-project/build/bin/$val package/bin/; done
cat clang/include.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval cp -rP llvm-project/build/include/$val package/include/; done
cat clang/lib.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval cp -rP llvm-project/build/lib/$val package/lib/; done
Expand Down

0 comments on commit 3c25dde

Please sign in to comment.