From 906b9de6ed2e4db02530352154e9963828e96226 Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Thu, 28 May 2026 11:01:36 +0200 Subject: [PATCH 1/2] Use cache_variables for CMake options in conanfile.py --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 4660a76..bc59d6c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -100,7 +100,7 @@ def generate(self): tc.variables["ManiVault_DIR"] = manivault_dir # Set some build options - tc.variables["MV_UNITY_BUILD"] = "ON" + tc.cache_variables["MV_UNITY_BUILD"] = "ON" # Use vcpkg-installed dependencies if there are any if os.environ.get("VCPKG_ROOT", None): From d0d4b8cd168d183c1626ce2cb2334e633ce22e6c Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Thu, 28 May 2026 11:02:01 +0200 Subject: [PATCH 2/2] use Ubuntu slim instead of latest --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a32b9ba..ae8220f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ env: # for matrix check https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners jobs: prepare_matrix: - runs-on: ubuntu-latest + runs-on: ubuntu-slim outputs: matrix: ${{ steps.matrix_setup.outputs.matrix }} steps: