Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
config:
- { name: "Windows", os: windows-2022, mpv_version: 20211226-git-d92cf77 }
- { name: "macOS", os: macos-latest }
- { name: "Ubuntu", os: ubuntu-20.04 }
- { name: "Ubuntu", os: ubuntu-latest }
fail-fast: false

name: ${{ matrix.config.name }}
Expand Down Expand Up @@ -65,6 +65,10 @@ jobs:
# Create fake assets dir so build works
mkdir res

if [ "${{ runner.os }}" == "macOS" ]; then
sips -s format png /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/GenericApplicationIcon.icns --out res/window_icon.png
fi

if [ ! "${{ runner.os }}" == "Windows" ]; then
export WITH_SYSTEM_LIBS=ON
else
Expand Down
Loading