Skip to content

Commit

Permalink
Revert to older patchelf version so we can use GCC 9
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllingstad committed Nov 23, 2023
1 parent e250a14 commit d2b6c1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
build_type: [Debug, Release]
compiler_version: [11]
compiler_version: [9]
option_proxyfmu: ['proxyfmu=True', 'proxyfmu=False']

steps:
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CosimCLIConan(ConanFile):
def requirements(self):
self.tool_requires("cmake/[>=3.19]")
if self.settings.os == "Linux":
self.tool_requires("patchelf/[>=0.18]")
self.tool_requires("patchelf/[<0.18]")
self.requires("libcosim/0.11.0@osp/testing-feature_conan-2")
self.requires("boost/[>=1.71]")

Expand Down

0 comments on commit d2b6c1d

Please sign in to comment.