Skip to content

Commit

Permalink
update runner images
Browse files Browse the repository at this point in the history
  • Loading branch information
tsl0922 committed Jan 27, 2023
1 parent aff0ca8 commit a044f1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -22,6 +22,9 @@ jobs:
libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev \
mesa-common-dev libgtk-3-dev libfreetype-dev libmpv-dev
- name: Build ImPlay
env:
CC: gcc-10
CXX: g++-10
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
Expand Down Expand Up @@ -64,7 +67,7 @@ jobs:
name: ImPlay-macOS
path: build/ImPlay-*.dmg
win:
runs-on: windows-2022
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if(WIN32 AND USE_MPV_WIN_BUILD)
set(MPV_LIBRARY_DIRS ${MPV_DEV_DIR})
set(MPV_LIBRARIES mpv)
else()
pkg_search_module(MPV REQUIRED mpv)
pkg_search_module(MPV REQUIRED mpv>=0.29.0)
endif()

if(USE_PATCHED_GLFW)
Expand Down

0 comments on commit a044f1e

Please sign in to comment.