Closed sdogruyol closed 1 year ago
Perhaps https://github.com/crystal-lang/crystal/pull/13069 might have sth to do with it?
@Sija That can't be. The failure happens with both nightly and the 1.7.2 release. So it must be inherent to the runner image.
macos-latest
was recently upgraded from macos-11
to macos-12
, that's a possible cause for the disruption. Best to pin the version explicitly and perform updates intentionally.
However, I presume it's probably the same as https://github.com/actions/runner-images/issues/7128#issuecomment-1434013399 This was just fixed in https://github.com/actions/runner-images/pull/7125. Not sure how long it takes to roll out.
This can be fixed by installing pkg-config
on macOS runner manually:
- name: Install macOS dependencies
if: runner.os == 'macOS'
run: |
brew install pkg-config
But this is already fixed in the upstream https://github.com/actions/runner-images/pull/7125. So probably just need to wait while this will be released.
Thanks @straight-shoota @Sija @mamantoha 🙏
Fixed now, can be seen in the latest run https://github.com/kemalcr/kemal/actions/runs/4654085351
MacOS CI is broken on both latest and nightly on
run spec
with the following error. //cc @Sija