Skip to content

Commit

Permalink
Fix the github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
n-e committed Mar 19, 2024
1 parent d902ace commit fca9448
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,24 @@ on:

jobs:
build:
name: Build - ${{ matrix.platform.release_for }}
name: Build - ${{ matrix.platform.target }}
runs-on: ${{ matrix.platform.os }}

strategy:
fail-fast: false
matrix:
platform:
- target: x86_64-unknown-linux-musl
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
pre_command: sudo apt install pkg-config libssl-dev

- target: aarch64-apple-darwin
os: macOS-latest
pre_command: brew install [email protected]

steps:
- name: Pre pre_command
run: ${{ matrix.platform.pre_command }}
- name: Checkout
uses: actions/checkout@v3
- name: Build binary
Expand Down

0 comments on commit fca9448

Please sign in to comment.