mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
run X64 on regular runners
Contributes to CURA-8415
This commit is contained in:
parent
13b3082b00
commit
e6e867eb5f
1 changed files with 10 additions and 1 deletions
11
.github/workflows/macos.yml
vendored
11
.github/workflows/macos.yml
vendored
|
@ -75,8 +75,17 @@ env:
|
|||
STAGING: ${{ inputs.staging }}
|
||||
|
||||
jobs:
|
||||
get-runner-label:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
label: ${{ steps.determine-label.outputs.label }} # You must define the specific step inside the job
|
||||
steps:
|
||||
- id: determine-label
|
||||
run: echo "::set-output name=label::$(if [ "${{ inputs.architecture }}" = "ARM64" ]; then echo 'self-hosted'; else echo 'macos-11'; fi)"
|
||||
|
||||
cura-installer-create:
|
||||
runs-on: [ self-hosted, "${{ inputs.architecture }}" ]
|
||||
needs: [ get-runner-label ]
|
||||
runs-on: ${{ needs.get-runner-label.outputs.label }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue