mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 04:15:53 +08:00
Use github.event.inputs
Contributes to CURA-10998
This commit is contained in:
parent
e586fca22e
commit
c9bc1963e4
38
.github/workflows/installers.yml
vendored
38
.github/workflows/installers.yml
vendored
@ -51,9 +51,9 @@ jobs:
|
|||||||
uses: ./.github/workflows/windows.yml
|
uses: ./.github/workflows/windows.yml
|
||||||
with:
|
with:
|
||||||
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||||
conan_args: ${{ github.event.inputs.CONAN_ARGS }}
|
conan_args: ${{ github.event.inputs.conan_args }}
|
||||||
enterprise: ${{ github.event.inputs.ENTERPRISE }}
|
enterprise: ${{ github.event.inputs.enterprise }}
|
||||||
staging: ${{ github.event.inputs.STAGING }}
|
staging: ${{ github.event.inputs.staging }}
|
||||||
architecture: X64
|
architecture: X64
|
||||||
operating_system: windows-2022
|
operating_system: windows-2022
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@ -62,10 +62,10 @@ jobs:
|
|||||||
if: ${{ contains(github.event.inputs.os_list, 'linux-modern') || github.event_name == 'schedule' }}
|
if: ${{ contains(github.event.inputs.os_list, 'linux-modern') || github.event_name == 'schedule' }}
|
||||||
uses: ./.github/workflows/linux.yml
|
uses: ./.github/workflows/linux.yml
|
||||||
with:
|
with:
|
||||||
cura_conan_version: ${{ env.CURA_CONAN_VERSION }}
|
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||||
conan_args: ${{ env.CONAN_ARGS }}
|
conan_args: ${{ github.event.inputs.conan_args }}
|
||||||
enterprise: ${{ env.ENTERPRISE }}
|
enterprise: ${{ github.event.inputs.enterprise }}
|
||||||
staging: ${{ env.STAGING }}
|
staging: ${{ github.event.inputs.staging }}
|
||||||
architecture: X64
|
architecture: X64
|
||||||
operating_system: ubuntu-22.04
|
operating_system: ubuntu-22.04
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@ -74,10 +74,10 @@ jobs:
|
|||||||
if: ${{ contains(github.event.inputs.os_list, 'linux-legacy') || github.event_name == 'schedule' }}
|
if: ${{ contains(github.event.inputs.os_list, 'linux-legacy') || github.event_name == 'schedule' }}
|
||||||
uses: ./.github/workflows/linux.yml
|
uses: ./.github/workflows/linux.yml
|
||||||
with:
|
with:
|
||||||
cura_conan_version: ${{ env.CURA_CONAN_VERSION }}
|
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||||
conan_args: ${{ env.CONAN_ARGS }}
|
conan_args: ${{ github.event.inputs.conan_args }}
|
||||||
enterprise: ${{ env.ENTERPRISE }}
|
enterprise: ${{ github.event.inputs.enterprise }}
|
||||||
staging: ${{ env.STAGING }}
|
staging: ${{ github.event.inputs.staging }}
|
||||||
architecture: X64
|
architecture: X64
|
||||||
operating_system: ubuntu-20.04
|
operating_system: ubuntu-20.04
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@ -86,10 +86,10 @@ jobs:
|
|||||||
if: ${{ contains(github.event.inputs.os_list, 'macos-x64') || github.event_name == 'schedule' }}
|
if: ${{ contains(github.event.inputs.os_list, 'macos-x64') || github.event_name == 'schedule' }}
|
||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
with:
|
with:
|
||||||
cura_conan_version: ${{ env.CURA_CONAN_VERSION }}
|
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||||
conan_args: ${{ env.CONAN_ARGS }}
|
conan_args: ${{ github.event.inputs.conan_args }}
|
||||||
enterprise: ${{ env.ENTERPRISE }}
|
enterprise: ${{ github.event.inputs.enterprise }}
|
||||||
staging: ${{ env.STAGING }}
|
staging: ${{ github.event.inputs.staging }}
|
||||||
architecture: X64
|
architecture: X64
|
||||||
operating_system: macos-11.0
|
operating_system: macos-11.0
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@ -98,10 +98,10 @@ jobs:
|
|||||||
if: ${{ contains(github.event.inputs.os_list, 'macos-arm64') || github.event_name == 'schedule' }}
|
if: ${{ contains(github.event.inputs.os_list, 'macos-arm64') || github.event_name == 'schedule' }}
|
||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
with:
|
with:
|
||||||
cura_conan_version: ${{ env.CURA_CONAN_VERSION }}
|
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
|
||||||
conan_args: ${{ env.CONAN_ARGS }}
|
conan_args: ${{ github.event.inputs.conan_args }}
|
||||||
enterprise: ${{ env.ENTERPRISE }}
|
enterprise: ${{ github.event.inputs.enterprise }}
|
||||||
staging: ${{ env.STAGING }}
|
staging: ${{ github.event.inputs.staging }}
|
||||||
architecture: ARM64
|
architecture: ARM64
|
||||||
operating_system: self-hosted
|
operating_system: self-hosted
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user