🐛 Fixed missing ubuntu deps
This commit is contained in:
parent
a65b64c7c4
commit
5a67cc4fd4
2
.github/workflows/conan-pkg.yml
vendored
2
.github/workflows/conan-pkg.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
||||
run-conan:
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
fail-fast: true
|
||||
matrix:
|
||||
config:
|
||||
- name: Ubuntu
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user