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 b79c83f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 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
10 changes: 10 additions & 0 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,6 +65,14 @@ jobs:
os: ubuntu-latest
target: aarch64-linux-android
cargo: cross
- 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: linux-x64-gnu
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
Expand Down

0 comments on commit b79c83f

Please sign in to comment.