Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
muon meme
Browse files Browse the repository at this point in the history
kasper93 committed Jan 29, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 4fd9893 commit 70b2d4f
Showing 2 changed files with 49 additions and 1 deletion.
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -571,3 +571,52 @@ jobs:
if: ${{ failure() && steps.tests.outcome == 'failure' }}
run: |
cat ./build/meson-logs/testlog.txt
build-muon:
runs-on: ubuntu-latest
container:
image: alpine:edge

strategy:
fail-fast: false
matrix:
cc: [clang, gcc]

env:
CC: ${{ matrix.cc }}

steps:
- name: Install dependencies
run: |
apk add ${{ matrix.cc }} libass-dev libplacebo-dev ffmpeg-dev python3 \
pkgconf-dev curl-dev luajit-dev mujs-dev zimg-dev gnu-libiconv-dev \
libarchive-dev libbluray-dev rubberband-dev pipewire-dev libcaca-dev \
libdrm-dev libdisplay-info-dev libsixel-dev wayland-dev wayland-protocols \
libxkbcommon-dev libxscrnsaver-dev libxpresent-dev libxrandr-dev mesa-dev \
ffnvcodec-headers libva-dev
- uses: actions/checkout@master
with:
repository: muon-build/muon

- name: Install muon
run: |
./bootstrap.sh build
./build/muon-bootstrap setup build
./build/muon-bootstrap -C build samu
./build/muon-bootstrap -C build install
- uses: actions/checkout@v4

- name: Configure
run: muon setup -Dlibmpv=true -Dtests=true build

- name: Build
run: samu -C build

- name: Tests
working-directory: build
run: muon test

- name: Analyze meson.build
run: muon analyze
1 change: 0 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ project('mpv',
version: files('./MPV_VERSION'),
meson_version: '>=1.3.0',
default_options: [
'backend_max_links=16',
'buildtype=debugoptimized',
'b_lundef=false',
'c_std=c11',

0 comments on commit 70b2d4f

Please sign in to comment.