Skip to content

Commit

Permalink
github_workflow: Create builds for i686 and arm
Browse files Browse the repository at this point in the history
  • Loading branch information
zefr0x committed Nov 4, 2023
1 parent c6374bc commit 96e9881
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,32 @@ jobs:
RUST_BACKTRACE: 1
strategy:
matrix:
build: [linux]
build: [x86_64-linux-musl, i686-linux-musl, arm-linux-musleabihf]
include:
- build: linux
# - build: x86_64-linux-gnu
# os: ubuntu-latest
# rust: stable
# target: x86_64-unknown-linux-gnu
- build: x86_64-linux-musl
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-musl
# - build: i686-linux-gnu
# os: ubuntu-latest
# rust: stable
# target: i686-unknown-linux-musl
- build: i686-linux-musl
os: ubuntu-latest
rust: stable
target: i686-unknown-linux-musl
# - build: arm-linux-gnueabihf
# os: ubuntu-latest
# rust: stable
# target: arm-unknown-linux-gnueabihf
- build: arm-linux-musleabihf
os: ubuntu-latest
rust: stable
target: arm-unknown-linux-musleabihf
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 96e9881

Please sign in to comment.