Browse Source

Use conf skip_test

Contributes to CURA-10951
jellespijker 1 year ago
parent
commit
1fb7191dd7

+ 1 - 1
.github/workflows/conan-package-create.yml

@@ -147,7 +147,7 @@ jobs:
                 run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True
 
             -   name: Create the Packages
-                run: conan install ${{ inputs.recipe_id_full }} --build=missing --update
+                run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True
 
             -   name: Upload the Package(s)
                 if: ${{ always() && inputs.conan_upload_community }}

+ 1 - 1
.github/workflows/conan-package.yml

@@ -114,7 +114,7 @@ jobs:
         run: conan config install https://github.com/Ultimaker/conan-config.git
 
       - name: Create the Packages
-        run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True
+        run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -c tools.build:skip_test=True
 
       - name: Create the latest alias
         if: always()

+ 1 - 1
.github/workflows/conan-recipe-export.yml

@@ -83,7 +83,7 @@ jobs:
 
             -   name: Export the Package (binaries)
                 if: ${{ inputs.conan_export_binaries }}
-                run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update
+                run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True
 
             -   name: Export the Package
                 if: ${{ !inputs.conan_export_binaries }}

+ 1 - 1
.github/workflows/requirements-conan-package.txt

@@ -1,2 +1,2 @@
-conan==1.60.2
+conan>=1.60.2,<2.0.0
 sip