Run conan profile detection after switching compiler

Should fix failing UT
This commit is contained in:
Jelle Spijker 2023-04-08 10:25:17 +02:00
parent bba02e5e16
commit 30d812d138
No known key found for this signature in database
GPG Key ID: 034D1C0527888B65

View File

@ -87,9 +87,7 @@ jobs:
cache-dependency-path: .github/workflows/requirements-conan-package.txt cache-dependency-path: .github/workflows/requirements-conan-package.txt
- name: Install Python requirements and Create default Conan profile - name: Install Python requirements and Create default Conan profile
run: | run: pip install -r requirements-conan-package.txt
pip install -r requirements-conan-package.txt
conan profile new default --detect
working-directory: .github/workflows/ working-directory: .github/workflows/
- name: Use Conan download cache (Bash) - name: Use Conan download cache (Bash)
@ -126,6 +124,9 @@ jobs:
- name: Get Conan configuration - name: Get Conan configuration
run: conan config install https://github.com/Ultimaker/conan-config.git 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 - 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 run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o cura:devtools=True -g VirtualPythonEnv -if venv