diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fb87330c..917899a5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -633,7 +633,11 @@ jobs: for file in $(xcrun --show-sdk-path)/usr/include/* do if [ ! -f /usr/local/include/$(basename $file) ]; then - ln -s $file /usr/local/include/$(basename $file) + if [[ "${file}" == "AppleArchive" ]]; then + + else + ln -s $file /usr/local/include/$(basename $file) + fi fi done # We need PATH_TO_LLVM_BUILD later