From 80db7d7f6b3027927b36a6331368c2855f82e0d0 Mon Sep 17 00:00:00 2001 From: Lubos Mjachky Date: Wed, 26 Jun 2024 13:41:32 +0200 Subject: [PATCH] Install OS required packages [noissue] --- .github/template_gitref | 2 +- .github/workflows/build.yml | 3 +++ template_config.yml | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/template_gitref b/.github/template_gitref index 7150dcb4..fbf4b7e1 100644 --- a/.github/template_gitref +++ b/.github/template_gitref @@ -1 +1 @@ -2021.08.26-345-g747bcf8 +2021.08.26-346-ga425289 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cbb13657..c90dcfb6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,9 @@ jobs: echo ::group::PYDEPS pip install packaging twine wheel mkdocs jq echo ::endgroup:: + - name: "Install OS packages" + run: | + apt-get install -y libgirepository1.0-dev libostree-dev - name: "Build package" run: | python3 setup.py sdist bdist_wheel --python-tag py3 diff --git a/template_config.yml b/template_config.yml index 059b2474..504b86b1 100644 --- a/template_config.yml +++ b/template_config.yml @@ -32,6 +32,9 @@ kanban: true latest_release_branch: '2.3' lint_requirements: true noissue_marker: '[noissue]' +os_required_packages: + - libgirepository1.0-dev + - libostree-dev parallel_test_workers: 8 plugin_app_label: ostree plugin_default_branch: main