Merge pull request #34 from Ultimaker/CURA-11063_WhatsNew_Pages #90
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: conan-package | |
# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can | |
# be used downstream. | |
# | |
# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches | |
on: | |
push: | |
paths: | |
- 'cura/**' | |
- 'uranium/**' | |
- 'windows' | |
- '.github/workflows/conan-package.yml' | |
- 'conanfile.py' | |
branches: | |
- main | |
- 'CURA-*' | |
- '[1-9].[0-9]*' | |
tags: | |
- '[1-9].[0-9].[0-9]*' | |
jobs: | |
conan-recipe-version: | |
uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main | |
with: | |
project_name: cura_binary_data | |
conan-package-export-linux: | |
needs: [ conan-recipe-version ] | |
uses: ultimaker/cura/.github/workflows/conan-recipe-export.yml@main | |
with: | |
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} | |
recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} | |
runs_on: 'ubuntu-20.04' | |
python_version: '3.10.x' | |
conan_logging_level: 'info' | |
conan_export_binaries: true | |
secrets: inherit | |
conan-package-export-windows: | |
needs: [ conan-recipe-version ] | |
uses: ultimaker/cura/.github/workflows/conan-recipe-export.yml@main | |
with: | |
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} | |
recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} | |
runs_on: 'windows-2022' | |
python_version: '3.10.x' | |
conan_logging_level: 'info' | |
conan_export_binaries: true | |
secrets: inherit | |
notify-export: | |
if: ${{ always() }} | |
needs: [ conan-recipe-version, conan-package-export-linux, conan-package-export-windows ] | |
uses: ultimaker/cura/.github/workflows/notify.yml@main | |
with: | |
success: ${{ contains(join(needs.*.result, ','), 'success') }} | |
success_title: "New Conan recipe exported in ${{ github.repository }}" | |
success_body: "Exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" | |
failure_title: "Failed to export Conan Export in ${{ github.repository }}" | |
failure_body: "Failed to exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" | |
secrets: inherit |