diff --git a/.github/workflows/!PR.yml b/.github/workflows/!PR.yml index f57d6f1f8c3..74248819bf0 100644 --- a/.github/workflows/!PR.yml +++ b/.github/workflows/!PR.yml @@ -146,6 +146,16 @@ jobs: python-version: ${{needs.env.outputs.python-version}} ref: ${{needs.env.outputs.source-ref}} + mac: + needs: [ changes, env ] + if: ${{needs.changes.outputs.build == 'true' && !github.event.pull_request.draft}} + uses: ./.github/workflows/build_mac.yml + with: + upload: false + os: macos-latest + python-version: ${{needs.env.outputs.python-version}} + ref: ${{needs.env.outputs.source-ref}} + windows: needs: [ changes, env ] if: ${{needs.changes.outputs.build == 'true' && !github.event.pull_request.draft}} diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index 86ba8d5bf84..f8f8dde9e8d 100644 --- a/.github/workflows/build_mac.yml +++ b/.github/workflows/build_mac.yml @@ -4,7 +4,7 @@ on: workflow_call: inputs: os: - default: macos-10.15 + default: macos-latest type: string required: false