Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjspijker <j.spijker@ultimaker.com>2022-11-07 09:59:41 +0300
committerjspijker <j.spijker@ultimaker.com>2022-11-07 09:59:41 +0300
commit2d38392d50babc3cf586403dd0977e5aaf85ad64 (patch)
treebfd4af184c1d928bdd27820f6339bcc015b8f91a
parent2b803bdc90e09ec12c40e30331eec33e7603d34b (diff)
Run conan profile detection after setting GCC10 as default
-rw-r--r--.github/workflows/unit-test.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index 5e33d7a02..cdc8f3031 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -75,7 +75,6 @@ jobs:
- name: Install Python requirements and Create default Conan profile
run: |
pip install -r requirements-conan-package.txt
- conan profile new default --detect
working-directory: .github/workflows/
- name: Use Conan download cache (Bash)
@@ -105,7 +104,9 @@ jobs:
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10
- name: Get Conan configuration
- run: conan config install https://github.com/Ultimaker/conan-config.git
+ run: |
+ conan profile new default --detect
+ conan config install https://github.com/Ultimaker/conan-config.git
- name: Install dependencies
run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -o enable_testing=True -s build_type=Release --build=missing --update -g GitHubActionsRunEnv -g GitHubActionsBuildEnv