Skip to content

Commit

Permalink
ci(agent): Add macOS on M1 to AutoGPT CI matrix (#7041)
Browse files Browse the repository at this point in the history
Use a `macos-14` runner to cover macOS on M1/arm64

- Add `macos-arm64` to `platform-os` matrix, and map it to `macos-14` runner
  • Loading branch information
Pwuts committed Mar 22, 2024
1 parent 2a0e087 commit 30bc761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autogpt-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.10"]
platform-os: [ubuntu, macos, windows]
runs-on: ${{ matrix.platform-os }}-latest
platform-os: [ubuntu, macos, macos-arm64, windows]
runs-on: ${{ matrix.platform-os != 'macos-arm64' && format('{0}-latest', matrix.platform-os) || 'macos-14' }}

steps:
# Quite slow on macOS (2~4 minutes to set up Docker)
Expand Down

0 comments on commit 30bc761

Please sign in to comment.