Skip to content

Commit

Permalink
Allow specific installers to have package overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Dec 13, 2024
1 parent 20b311f commit 0b66120
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
default: 'cura/[*]@ultimaker/testing'
type: string
package_overrides:
description: 'Space-separated List of specific packages to be used'
description: 'List of specific packages to be used (space-separated)'
default: ''
type: string
conan_args:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ on:
default: 'cura/[*]@ultimaker/testing'
required: true
type: string
package_overrides:
description: 'List of specific packages to be used (space-separated)'
default: ''
type: string
conan_args:
description: 'Conan args, e.g. --requires'
description: 'Conan args'
default: ''
required: false
type: string
Expand Down Expand Up @@ -38,6 +42,7 @@ jobs:
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main
with:
cura_conan_version: ${{ inputs.cura_conan_version }}
package_overrides: ${{ inputs.package_overrides }}
conan_args: ${{ inputs.conan_args }}
enterprise: ${{ inputs.enterprise }}
staging: ${{ inputs.staging }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ on:
default: 'cura/[*]@ultimaker/testing'
required: true
type: string
package_overrides:
description: 'List of specific packages to be used (space-separated)'
default: ''
type: string
conan_args:
description: 'Conan args: eq.: --require-override'
description: 'Conan args'
default: ''
required: false
type: string
Expand Down Expand Up @@ -47,6 +51,7 @@ jobs:
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main
with:
cura_conan_version: ${{ inputs.cura_conan_version }}
package_overrides: ${{ inputs.package_overrides }}
conan_args: ${{ inputs.conan_args }}
enterprise: ${{ inputs.enterprise }}
staging: ${{ inputs.staging }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ on:
default: 'cura/[*]@ultimaker/testing'
required: true
type: string
package_overrides:
description: 'List of specific packages to be used (space-separated)'
default: ''
type: string
conan_args:
description: 'Conan args: eq.: --requires'
description: 'Conan args'
default: ''
required: false
type: string
Expand Down Expand Up @@ -38,6 +42,7 @@ jobs:
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main
with:
cura_conan_version: ${{ inputs.cura_conan_version }}
package_overrides: ${{ inputs.package_overrides }}
conan_args: ${{ inputs.conan_args }}
enterprise: ${{ inputs.enterprise }}
staging: ${{ inputs.staging }}
Expand Down

0 comments on commit 0b66120

Please sign in to comment.