Skip to content

Commit

Permalink
Debug AppleArchive issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Mar 8, 2024
1 parent 2089bb1 commit 4d5885b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,9 @@ jobs:
for file in $(xcrun --show-sdk-path)/usr/include/*
do
if [ ! -f /usr/local/include/$(basename $file) ]; then
if [[ "${file}" == "AppleArchive" ]]; then
export basefile="$(basename $file)"
echo $basefile
if [[ "${basefile}" == "AppleArchive" ]]; then
echo "No AppleArchive on osx Github runner for linking"
else
ln -s $file /usr/local/include/$(basename $file)
Expand Down

0 comments on commit 4d5885b

Please sign in to comment.