CI: use macos-15-intel

screen must be disabled here because the Core Graphics API for screen
capture is being deprecated/removed in macOS 15.

closes <https://github.com/CESNET/UltraGrid/issues/485>
This commit is contained in:
Martin Pulec
2025-12-05 11:05:21 +01:00
parent d241fedb41
commit 1d91f55bcf
2 changed files with 5 additions and 1 deletions

View File

@@ -104,6 +104,10 @@ case "$RUNNER_OS" in
--enable-libbacktrace \
--enable-syphon \
"
macos_major=$(sw_vers -productVersion | cut -d. -f1)
if [ "$macos_major" -ge 15 ]; then
FEATURES="$FEATURES --disable-screen"
fi
;;
Windows)
FEATURES="$FEATURES $CUDA_FEATURES --enable-dshow --enable-spout --enable-wasapi"