mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 06:05:52 +08:00
Partial revert of unneeded code.
It doesn't work out this way, and, due to the if-clause further on, it should work even if the 'need's aren't all met. part of CURA-9494
This commit is contained in:
parent
566fdfce1c
commit
e9fe6b9831
10
.github/workflows/installers.yml
vendored
10
.github/workflows/installers.yml
vendored
@ -45,8 +45,6 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
windows-installer:
|
windows-installer:
|
||||||
steps:
|
|
||||||
- name: Build Windows installer
|
|
||||||
if: ${{ contains(inputs.os_list, 'windows') }}
|
if: ${{ contains(inputs.os_list, 'windows') }}
|
||||||
uses: ./.github/workflows/windows.yml
|
uses: ./.github/workflows/windows.yml
|
||||||
with:
|
with:
|
||||||
@ -59,8 +57,6 @@ jobs:
|
|||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
linux-modern-installer:
|
linux-modern-installer:
|
||||||
steps:
|
|
||||||
- name: Build (modern) Linux installer
|
|
||||||
if: ${{ contains(inputs.os_list, 'linux-modern') }}
|
if: ${{ contains(inputs.os_list, 'linux-modern') }}
|
||||||
uses: ./.github/workflows/linux.yml
|
uses: ./.github/workflows/linux.yml
|
||||||
with:
|
with:
|
||||||
@ -73,8 +69,6 @@ jobs:
|
|||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
linux-legacy-installer:
|
linux-legacy-installer:
|
||||||
steps:
|
|
||||||
- name: Build (legacy) Linux installer
|
|
||||||
if: ${{ contains(inputs.os_list, 'linux-legacy') }}
|
if: ${{ contains(inputs.os_list, 'linux-legacy') }}
|
||||||
uses: ./.github/workflows/linux.yml
|
uses: ./.github/workflows/linux.yml
|
||||||
with:
|
with:
|
||||||
@ -87,8 +81,6 @@ jobs:
|
|||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
macos-installer:
|
macos-installer:
|
||||||
steps:
|
|
||||||
- name: Build MacOS installer for Intel chips
|
|
||||||
if: ${{ contains(inputs.os_list, 'macos-x64') }}
|
if: ${{ contains(inputs.os_list, 'macos-x64') }}
|
||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
with:
|
with:
|
||||||
@ -101,8 +93,6 @@ jobs:
|
|||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
macos-arm-installer:
|
macos-arm-installer:
|
||||||
steps:
|
|
||||||
- name: Build MacOS installer for ARM chips
|
|
||||||
if: ${{ contains(inputs.os_list, 'macos-arm64') }}
|
if: ${{ contains(inputs.os_list, 'macos-arm64') }}
|
||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
with:
|
with:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user