mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
91 lines
2.7 KiB
YAML
91 lines
2.7 KiB
YAML
name: All installers
|
|
run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
cura_conan_version:
|
|
description: 'Cura Conan Version'
|
|
default: 'cura/[*]@ultimaker/testing'
|
|
required: true
|
|
type: string
|
|
conan_args:
|
|
description: 'Conan args, e.g. --requires'
|
|
default: ''
|
|
required: false
|
|
type: string
|
|
enterprise:
|
|
description: 'Build Cura as an Enterprise edition'
|
|
default: false
|
|
required: true
|
|
type: boolean
|
|
staging:
|
|
description: 'Use staging API'
|
|
default: false
|
|
required: true
|
|
type: boolean
|
|
|
|
workflow_call:
|
|
inputs:
|
|
cura_conan_version:
|
|
default: 'cura/latest@ultimaker/testing'
|
|
required: true
|
|
type: string
|
|
conan_args:
|
|
default: ''
|
|
required: false
|
|
type: string
|
|
enterprise:
|
|
default: false
|
|
required: false
|
|
type: boolean
|
|
staging:
|
|
default: false
|
|
required: false
|
|
type: boolean
|
|
|
|
|
|
jobs:
|
|
windows-installer:
|
|
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main
|
|
with:
|
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
|
conan_args: ${{ inputs.conan_args }}
|
|
enterprise: ${{ inputs.enterprise == 'true' }}
|
|
staging: ${{ inputs.staging == 'true' }}
|
|
architecture: X64
|
|
operating_system: self-hosted-Windows-X64
|
|
secrets: inherit
|
|
|
|
# FIXME: Use main once merged
|
|
linux-installer:
|
|
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@CURA-11622_conan_v2
|
|
with:
|
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
|
conan_args: ${{ inputs.conan_args }}
|
|
enterprise: ${{ inputs.enterprise == 'true' }}
|
|
staging: ${{ inputs.staging == 'true' }}
|
|
operating_system: self-hosted-Ubuntu22-X64
|
|
secrets: inherit
|
|
|
|
macos-installer:
|
|
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main
|
|
with:
|
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
|
conan_args: ${{ inputs.conan_args }}
|
|
enterprise: ${{ inputs.enterprise == 'true' }}
|
|
staging: ${{ inputs.staging == 'true' }}
|
|
architecture: X64
|
|
operating_system: self-hosted-X64
|
|
secrets: inherit
|
|
|
|
macos-arm-installer:
|
|
uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main
|
|
with:
|
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
|
conan_args: ${{ inputs.conan_args }}
|
|
enterprise: ${{ inputs.enterprise == 'true' }}
|
|
staging: ${{ inputs.staging == 'true' }}
|
|
architecture: ARM64
|
|
operating_system: self-hosted-ARM64
|
|
secrets: inherit
|