Skip to content

Commit

Permalink
Merge pull request #2033 from zowe/add-arm-mac-runner
Browse files Browse the repository at this point in the history
[Innovation] Add ARM64 MacOS runner
  • Loading branch information
awharn authored Feb 2, 2024
2 parents f9c02b7 + 88404e9 commit c9a1195
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/zowe-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ on:
description: Specify whether to run tests using the `binary` or regular `nodejs` executable
default: binary
required: false
macos-type:
type: choice
description: Run against x86-based MacOS (12), otherwise run against ARM64-based MacOS (14)
default: macos-14
options:
- macos-12
- macos-14

jobs:
test:
Expand All @@ -28,7 +35,10 @@ jobs:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os: [windows-latest, ubuntu-latest, macos-latest]
os:
- windows-latest
- ubuntu-latest
- ${{ github.event.inputs.macos-type || 'macos-14'}}

env:
OS: ${{ matrix.os }}
Expand Down

0 comments on commit c9a1195

Please sign in to comment.