-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update conanfile.py and streamline GitHub workflow
Added an `export` method in conanfile.py to update the conandata with the current version. Minor modifications were also made to the GitHub workflow, removing redundant job steps and reformatting it for clarity. Version exports are now also disabled in the 'conan-package-export-linux' job. Contributes to CURA-10831
- Loading branch information
1 parent
45b57fb
commit 39893a0
Showing
2 changed files
with
33 additions
and
52 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,35 @@ | ||
--- | ||
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: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- '*.xml.*' | ||
- '*.sig' | ||
- 'conanfile.py' | ||
- '.github/workflows/conan-package.yml' | ||
- '.github/workflows/requirements*.txt' | ||
branches: | ||
- main | ||
- master | ||
- 'CURA-*' | ||
- '[0-9].[0-9]*' | ||
tags: | ||
- '[1-9]+.[0-9]+.[0-9]*' | ||
- '[1-9]+.[0-9]+.[0-9]' | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- '*.xml.*' | ||
- '*.sig' | ||
- 'conanfile.py' | ||
- '.github/workflows/conan-package.yml' | ||
- '.github/workflows/requirements*.txt' | ||
branches: | ||
- main | ||
- master | ||
- 'CURA-*' | ||
- '[0-9].[0-9]*' | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]*' | ||
- '[0-9]+.[0-9]+.[0-9]' | ||
|
||
# FIXME: point to `main` once merged | ||
jobs: | ||
conan-recipe-version: | ||
uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 | ||
with: | ||
project_name: fdm_materials | ||
|
||
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_config_branch: 'master' | ||
conan_logging_level: 'info' | ||
conan_export_binaries: true | ||
secrets: inherit | ||
|
||
notify-export: | ||
if: ${{ always() }} | ||
needs: [ conan-recipe-version, conan-package-export-linux ] | ||
conan-recipe-version: | ||
uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@CURA-10831 | ||
with: | ||
project_name: fdm_materials | ||
|
||
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 | ||
conan-package-export-linux: | ||
needs: [ conan-recipe-version ] | ||
uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@CURA-10831 | ||
with: | ||
recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} | ||
recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} | ||
conan_export_binaries: false | ||
secrets: inherit |
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