Skip to content

Commit

Permalink
cp
Browse files Browse the repository at this point in the history
  • Loading branch information
flxoacn committed Apr 2, 2024
1 parent 9354683 commit 885a44b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: cross build --target aarch64-linux-android --verbose

- name: Build target aarch64-unknown-linux-gnu
if: matrix.os == 'ubuntu-latest'
run: cross build --target aarch64-unknown-linux-gnu --verbose

- name: Build target aarch64-unknown-linux-musl
if: matrix.os == 'ubuntu-latest'
run: cross build --target aarch64-unknown-linux-musl --verbose

# This is useful for debugging problems when the expected build artifacts
# (like shell completions and man pages) aren't generated.
- name: Show build.rs stderr
Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
matrix:
build:
- aarch64-linux-android
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
- linux-x64-gnu
- linux-x64-musl
- macos-x64
Expand All @@ -63,16 +65,24 @@ jobs:
os: ubuntu-latest
target: aarch64-linux-android
cargo: cross
- build: linux-x64-gnu
- build: aarch64-unknown-linux-gnu
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
cargo: cross
- build: aarch64-unknown-linux-musl
os: ubuntu-latest
target: aarch64-unknown-linux-musl
cargo: cross
- build: x86_64-unknown-linux-gnu
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- build: linux-x64-musl
- build: x86_64-unknown-linux-musl
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- build: macos-x64
- build: x86_64-apple-darwin
os: macos-latest
target: x86_64-apple-darwin
- build: windows-x64-msvc
- build: x86_64-pc-windows-msvc
os: windows-latest
target: x86_64-pc-windows-msvc

Expand Down

0 comments on commit 885a44b

Please sign in to comment.