mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
chore: Build linutil aarch64 binaries
This commit is contained in:
parent
e349e25c12
commit
c6bd16f39d
8
.github/workflows/linutil.yml
vendored
8
.github/workflows/linutil.yml
vendored
|
@ -33,10 +33,14 @@ jobs:
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
targets: x86_64-unknown-linux-musl
|
targets: x86_64-unknown-linux-musl
|
||||||
- name: Build
|
- name: Install cross-rs for cross-compilation
|
||||||
|
run: cargo install cross
|
||||||
|
- name: Build x86_64 binary
|
||||||
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl
|
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl
|
||||||
|
- name: Build aarch64 binary
|
||||||
|
run: cross build --target-dir=build --release --verbose --target=aarch64-unknown-linux-musl
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
with:
|
with:
|
||||||
commit_message: Commit Linutil
|
commit_message: Commit Linutil
|
||||||
file_pattern: "build/x86_64-unknown-linux-musl/release/linutil"
|
file_pattern: "build/x86_64-unknown-linux-musl/release/linutil build/aarch64-unknown-linux-musl/release/linutil"
|
||||||
if: success()
|
if: success()
|
||||||
|
|
4
.github/workflows/pre-release.yaml
vendored
4
.github/workflows/pre-release.yaml
vendored
|
@ -21,6 +21,9 @@ jobs:
|
||||||
echo "version=$version" >> $GITHUB_ENV
|
echo "version=$version" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: Rename aarch64 binary for release
|
||||||
|
run: mv ./build/aarch64-unknown-linux-musl/release/linutil ./build/aarch64-unknown-linux-musl/release/linutil-aarch64
|
||||||
|
|
||||||
- name: Create and Upload Release
|
- name: Create and Upload Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
|
@ -31,6 +34,7 @@ jobs:
|
||||||
append_body: false
|
append_body: false
|
||||||
files: |
|
files: |
|
||||||
./build/x86_64-unknown-linux-musl/release/linutil
|
./build/x86_64-unknown-linux-musl/release/linutil
|
||||||
|
./build/aarch64-unknown-linux-musl/release/linutil-aarch64
|
||||||
prerelease: true
|
prerelease: true
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user