mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 20:16:02 +08:00
All installers
Contributes to CURA-8415
This commit is contained in:
parent
f452bcf576
commit
457bbb1543
77
.github/workflows/installers.yml
vendored
Normal file
77
.github/workflows/installers.yml
vendored
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
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/latest@ultimaker/testing'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
conan_args:
|
||||||
|
description: 'Conan args: eq.: --require-override'
|
||||||
|
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
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
windows-installer:
|
||||||
|
uses: ./.github/workflows/windows.yml@CURA-8415_self_hosted_runner
|
||||||
|
with:
|
||||||
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
||||||
|
conan_args: ${{ inputs.conan_args }}
|
||||||
|
enterprise: ${{ inputs.enterprise }}
|
||||||
|
staging: ${{ inputs.staging }}
|
||||||
|
architecture: X64
|
||||||
|
operating_system: windows-2022
|
||||||
|
|
||||||
|
linux-modern-installer:
|
||||||
|
uses: ./.github/workflows/linux.yml@CURA-8415_self_hosted_runner
|
||||||
|
with:
|
||||||
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
||||||
|
conan_args: ${{ inputs.conan_args }}
|
||||||
|
enterprise: ${{ inputs.enterprise }}
|
||||||
|
staging: ${{ inputs.staging }}
|
||||||
|
architecture: X64
|
||||||
|
operating_system: ubuntu-22.04
|
||||||
|
|
||||||
|
linux-legacy-installer:
|
||||||
|
uses: ./.github/workflows/linux.yml@CURA-8415_self_hosted_runner
|
||||||
|
with:
|
||||||
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
||||||
|
conan_args: ${{ inputs.conan_args }}
|
||||||
|
enterprise: ${{ inputs.enterprise }}
|
||||||
|
staging: ${{ inputs.staging }}
|
||||||
|
architecture: X64
|
||||||
|
operating_system: ubuntu-20.04
|
||||||
|
|
||||||
|
macos-installer:
|
||||||
|
uses: ./.github/workflows/macos.yml@CURA-8415_self_hosted_runner
|
||||||
|
with:
|
||||||
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
||||||
|
conan_args: ${{ inputs.conan_args }}
|
||||||
|
enterprise: ${{ inputs.enterprise }}
|
||||||
|
staging: ${{ inputs.staging }}
|
||||||
|
architecture: X64
|
||||||
|
operating_system: macos-11.0
|
||||||
|
|
||||||
|
macos-arm-installer:
|
||||||
|
uses: ./.github/workflows/macos.yml@CURA-8415_self_hosted_runner
|
||||||
|
with:
|
||||||
|
cura_conan_version: ${{ inputs.cura_conan_version }}
|
||||||
|
conan_args: ${{ inputs.conan_args }}
|
||||||
|
enterprise: ${{ inputs.enterprise }}
|
||||||
|
staging: ${{ inputs.staging }}
|
||||||
|
architecture: ARM64
|
||||||
|
operating_system: self-hosted
|
Loading…
x
Reference in New Issue
Block a user