From 420bba4e893db39291dabfcd1280eff4e14bee1a Mon Sep 17 00:00:00 2001 From: Shuanglei Tao Date: Mon, 13 Nov 2023 09:19:17 +0800 Subject: [PATCH] update required mpv versoin to 0.33.0 --- .github/workflows/build.yml | 6 ++---- CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b440e91..7e6e83e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ on: jobs: linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 name: Ubuntu steps: - uses: actions/checkout@v3 @@ -23,8 +23,6 @@ jobs: libfuse2 libgtk-3-dev libglfw3-dev libfreetype6-dev libmpv-dev - name: Build ImPlay env: - CC: gcc-10 - CXX: g++-10 DEPLOY_GTK_VERSION: 3 run: | mkdir build && cd build @@ -43,7 +41,7 @@ jobs: build/ImPlay-*.AppImage build/ImPlay-*.deb macos: - runs-on: macos-11 + runs-on: macos-12 name: macOS steps: - uses: actions/checkout@v3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 29a1a77..d7b4dc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ if(USE_MPV_WIN_BUILD) include(GetMpvWinDev) get_mpv_win_dev(mpv_dev) else() - pkg_search_module(MPV REQUIRED mpv>=0.29.0) + pkg_search_module(MPV REQUIRED mpv>=0.33.0) endif() if(USE_PATCHED_GLFW) add_subdirectory(third_party/glfw)