Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Conan
uses: turtlebrowser/get-conan@main
with:
version: 2.8.1
version: 2.25.2
- name: Configure conan
run: conan profile detect
- name: Install deps
Expand All @@ -29,7 +29,6 @@ jobs:
name: ubuntu
path: build/Li_ri-*.sh
mac:
if: ${{ false }} # disable until libmodplug works with recent cmake version
runs-on: macos-14
steps:
- uses: actions/checkout@v6.0.1
Expand All @@ -39,7 +38,7 @@ jobs:
- name: Get Conan
uses: turtlebrowser/get-conan@main
with:
version: 2.8.1
version: 2.25.2
- name: Configure conan
run: conan profile detect
- name: Install deps
Expand All @@ -63,7 +62,7 @@ jobs:
- name: Install Conan
uses: turtlebrowser/get-conan@main
with:
version: 2.8.1
version: 2.25.2

- name: Configure conan
run: conan profile detect
Expand Down
3 changes: 2 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

class LiRi(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = "sdl/[~2.28.5]", "sdl_mixer/[~2.8.0]", "openssl/1.1.1w"
requires = "sdl/2.32.10", "sdl_mixer/2.8.1", "openssl/1.1.1w"
tool_requires = "cmake/4.2.1"

def layout(self):
cmake_layout(self)
Expand Down
Loading