mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
Merge pull request #83 from lj3954/build_with_musl
chore: Build linutil against musl libc
This commit is contained in:
commit
e349e25c12
8
.github/workflows/linutil.yml
vendored
8
.github/workflows/linutil.yml
vendored
|
@ -2,7 +2,7 @@ name: LinUtil Release
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
branches: ["main"]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
@ -31,10 +31,12 @@ jobs:
|
|||
restore-keys: ${{ runner.os }}-cargo-index-
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
targets: x86_64-unknown-linux-musl
|
||||
- name: Build
|
||||
run: cargo build --target-dir=build --release --verbose
|
||||
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl
|
||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: Commit Linutil
|
||||
file_pattern: 'build/release/linutil'
|
||||
file_pattern: "build/x86_64-unknown-linux-musl/release/linutil"
|
||||
if: success()
|
||||
|
|
2
.github/workflows/pre-release.yaml
vendored
2
.github/workflows/pre-release.yaml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
body: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)"
|
||||
append_body: false
|
||||
files: |
|
||||
./build/release/linutil
|
||||
./build/x86_64-unknown-linux-musl/release/linutil
|
||||
prerelease: true
|
||||
generate_release_notes: true
|
||||
env:
|
||||
|
|
Loading…
Reference in New Issue
Block a user