From 30d812d138aa3469f2178573dfbd45cd553bd7cf Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 8 Apr 2023 10:25:17 +0200 Subject: [PATCH] Run conan profile detection after switching compiler Should fix failing UT --- .github/workflows/unit-test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 4e38efac0a..f08acbdb04 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -87,9 +87,7 @@ jobs: cache-dependency-path: .github/workflows/requirements-conan-package.txt - name: Install Python requirements and Create default Conan profile - run: | - pip install -r requirements-conan-package.txt - conan profile new default --detect + run: pip install -r requirements-conan-package.txt working-directory: .github/workflows/ - name: Use Conan download cache (Bash) @@ -126,6 +124,9 @@ jobs: - name: Get Conan configuration run: conan config install https://github.com/Ultimaker/conan-config.git + - name: Get Conan profile + run: conan profile new default --detect --force + - name: Install dependencies run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o cura:devtools=True -g VirtualPythonEnv -if venv