Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stulda authored May 31, 2024
1 parent c48e0f8 commit dee33eb
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,29 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
kind: ['linux', 'windows', 'macOS', 'linux-arm', 'windows-arm', 'macOS-arm']
include:
- kind: linux
os: ubuntu-latest
target: linux-x64
- kind: windows
os: windows-latest
target: win-x64
- kind: macOS
os: macos-latest
target: osx-x64
- kind: linux-arm
os: ubuntu-latest
target: linux-arm64
- kind: windows-arm
os: windows-latest
target: win-arm64
- kind: macOS-arm
os: macos-latest
target: osx-arm64
runs-on: ${{ matrix.os }}

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

0 comments on commit dee33eb

Please sign in to comment.