mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 23:53:56 -06:00
Create the package
Contributes to CURA-8831
This commit is contained in:
parent
cc329955f0
commit
ae7023b2db
1 changed files with 31 additions and 6 deletions
37
.github/workflows/conan-package.yml
vendored
37
.github/workflows/conan-package.yml
vendored
|
@ -41,10 +41,11 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- 'CURA-*'
|
- 'CURA-*'
|
||||||
- '[0-9]+.[0-9]+'
|
- '[1-9].[0-9]'
|
||||||
|
- '[1-9].[0-9][0-9]'
|
||||||
tags:
|
tags:
|
||||||
- '[0-9]+.[0-9]+.[0-9]+'
|
- '[1-9].[0-9].[0-9]+'
|
||||||
- '[0-9]+.[0-9]+-beta'
|
- '[1-9].[0-9][0-9].[0-9]+'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
conan-recipe-version:
|
conan-recipe-version:
|
||||||
|
@ -52,7 +53,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
project_name: cura
|
project_name: cura
|
||||||
|
|
||||||
conan-package-export-linux:
|
conan-package-export:
|
||||||
needs: [ conan-recipe-version ]
|
needs: [ conan-recipe-version ]
|
||||||
uses: ultimaker/cura/.github/workflows/conan-recipe-export.yml@main
|
uses: ultimaker/cura/.github/workflows/conan-recipe-export.yml@main
|
||||||
with:
|
with:
|
||||||
|
@ -61,12 +62,23 @@ jobs:
|
||||||
runs_on: 'ubuntu-20.04'
|
runs_on: 'ubuntu-20.04'
|
||||||
python_version: '3.10.x'
|
python_version: '3.10.x'
|
||||||
conan_logging_level: 'info'
|
conan_logging_level: 'info'
|
||||||
conan_export_binaries: true
|
secrets: inherit
|
||||||
|
|
||||||
|
conan-package-create-linux:
|
||||||
|
if: ${{ (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) || (github.event_name == 'workflow_dispatch' && inputs.create_binaries_linux) }}
|
||||||
|
needs: [ conan-recipe-version, conan-package-export ]
|
||||||
|
|
||||||
|
uses: ultimaker/cura/.github/workflows/conan-package-create.yml@main
|
||||||
|
with:
|
||||||
|
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }}
|
||||||
|
runs_on: 'ubuntu-20.04'
|
||||||
|
python_version: '3.10.x'
|
||||||
|
conan_logging_level: 'info'
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
notify-export:
|
notify-export:
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
needs: [ conan-recipe-version, conan-package-export-linux ]
|
needs: [ conan-recipe-version, conan-package-export ]
|
||||||
|
|
||||||
uses: ultimaker/cura/.github/workflows/notify.yml@main
|
uses: ultimaker/cura/.github/workflows/notify.yml@main
|
||||||
with:
|
with:
|
||||||
|
@ -76,3 +88,16 @@ jobs:
|
||||||
failure_title: "Failed to export Conan Export in ${{ github.repository }}"
|
failure_title: "Failed to export Conan Export in ${{ github.repository }}"
|
||||||
failure_body: "Failed to exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}"
|
failure_body: "Failed to exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}"
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
notify-create:
|
||||||
|
if: ${{ always() && ((github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) || (github.event_name == 'workflow_dispatch' && inputs.create_binaries_linux)) }}
|
||||||
|
needs: [ conan-recipe-version, conan-package-create-linux ]
|
||||||
|
|
||||||
|
uses: ultimaker/cura/.github/workflows/notify.yml@main
|
||||||
|
with:
|
||||||
|
success: ${{ contains(join(needs.*.result, ','), 'success') }}
|
||||||
|
success_title: "New binaries created in ${{ github.repository }}"
|
||||||
|
success_body: "Created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}"
|
||||||
|
failure_title: "Failed to create binaries in ${{ github.repository }}"
|
||||||
|
failure_body: "Failed to created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}"
|
||||||
|
secrets: inherit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue