Skip to content

Commit

Permalink
muon meme
Browse files Browse the repository at this point in the history
  • Loading branch information
kasper93 committed Jan 29, 2025
1 parent 4fd9893 commit 1aebd57
Show file tree
Hide file tree
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
Expand Up @@ -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 musl-dev \
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: muon 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
Expand Up @@ -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',
Expand Down

0 comments on commit 1aebd57

Please sign in to comment.