Skip to content

Commit

Permalink
Enable macArm64 CI testing (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenh committed Mar 23, 2024
1 parent 29e29d8 commit 9d7a152
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Expand Up @@ -14,10 +14,12 @@ jobs:
if: github.repository == 'ajalt/clikt'
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
os: [ macos-latest, macos-14, windows-latest, ubuntu-latest ]
include:
- os: macos-latest
TEST_TASK: macosX64Test
- os: macos-14
TEST_TASK: macosArm64Test
- os: windows-latest
TEST_TASK: mingwX64Test
- os: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -10,10 +10,12 @@ jobs:
test:
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
os: [ macos-latest, macos-14, windows-latest, ubuntu-latest ]
include:
- os: macos-latest
TEST_TASK: macosX64Test
- os: macos-14
TEST_TASK: macosArm64Test
- os: windows-latest
TEST_TASK: mingwX64Test
- os: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -69,8 +69,8 @@ dependencies {

#### Multiplatform

Clikt supports the following targets: `jvm`, `mingwX64`, `linuxX64`, `macosX64`, and `js` (for both
Node.js and Browsers). Artifacts for macosArm64 are also published, but not tested with CI. [See the
Clikt supports the following targets: `jvm`, `mingwX64`, `linuxX64`, `macosX64`, `macosArm64'`,
and `js` (for both Node.js and Browsers). [See the
docs](https://ajalt.github.io/clikt/advanced/#multiplatform-support) for more information about
functionality supported on each target. You'll need to use Gradle 6 or newer.

Expand Down

0 comments on commit 9d7a152

Please sign in to comment.