Skip to content

Commit

Permalink
feat(macos-amd64): Add Intel-based macOS as target
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Oct 30, 2024
1 parent 8298cdc commit 81092e7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ jobs:
runs-on: ${{ matrix.RUN_ON }}
strategy:
matrix:
platform: [macos, windows, linux-amd64, linux-arm32, linux-arm64]
platform: [macos-amd64, macos-arm64, windows, linux-amd64, linux-arm32, linux-arm64]
include:
- platform: macos
TARGET: macos
- platform: macos-amd64
TARGET: macos-amd64
SEPARATOR: ':'
RUN_ON: macos-latest
RUN_ON: macos-13 # Versions 13 and lower are Intel-based.
- platform: macos-arm64
TARGET: macos-arm64
SEPARATOR: ':'
RUN_ON: macos-latest # Versions 14 and higher are ARM-based.
- platform: windows
TARGET: win64
EXTEN: .exe
Expand Down

0 comments on commit 81092e7

Please sign in to comment.