Skip to content

Commit

Permalink
feat: build binaries for Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray authored Aug 17, 2024
1 parent 673be00 commit e6cedb6
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,30 @@ permissions:

jobs:
build-binaries:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
target:
os: [ubuntu-latest, macos-latest]
target:
- x86_64-unknown-linux-gnu
- aarch64-unknown-linux-gnu
- armv7-unknown-linux-gnueabihf
- arm-unknown-linux-gnueabihf # This is for ARMv6
- arm-unknown-linux-gnueabihf
- x86_64-apple-darwin
- aarch64-apple-darwin
exclude:
- os: ubuntu-latest
target: x86_64-apple-darwin
- os: ubuntu-latest
target: aarch64-apple-darwin
- os: macos-latest
target: x86_64-unknown-linux-gnu
- os: macos-latest
target: aarch64-unknown-linux-gnu
- os: macos-latest
target: armv7-unknown-linux-gnueabihf
- os: macos-latest
target: arm-unknown-linux-gnueabihf

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e6cedb6

Please sign in to comment.