From 5a67cc4fd4eb5989c1ef123407b8fee2b40ecdc8 Mon Sep 17 00:00:00 2001 From: Edgar Date: Wed, 6 Oct 2021 13:44:10 +0200 Subject: [PATCH] :bug: Fixed missing ubuntu deps --- .github/workflows/conan-pkg.yml | 2 +- ogre/1.11/conanfile.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/conan-pkg.yml b/.github/workflows/conan-pkg.yml index 26f2cee..0b1bf4c 100644 --- a/.github/workflows/conan-pkg.yml +++ b/.github/workflows/conan-pkg.yml @@ -9,7 +9,7 @@ jobs: run-conan: runs-on: ${{ matrix.config.os }} strategy: - fail-fast: false + fail-fast: true matrix: config: - name: Ubuntu diff --git a/ogre/1.11/conanfile.py b/ogre/1.11/conanfile.py index 53b9bce..ff80706 100644 --- a/ogre/1.11/conanfile.py +++ b/ogre/1.11/conanfile.py @@ -19,8 +19,12 @@ class OGREConan(ConanFile): if os_info.is_linux: if os_info.with_apt: installer = SystemPackageTool() + installer.install("libgles2-mesa-dev") + installer.install("libglu1-mesa-dev") installer.install("libx11-dev") installer.install("libxaw7-dev") + installer.install("libxrandr-dev") + installer.install("libxt-dev") def source(self): tools.get(**self.conan_data["sources"][self.version], strip_root=True)