2024-07-27 11:37:31 +01:00
|
|
|
name: LinUtil Release
|
|
|
|
|
|
|
|
on:
|
2024-09-16 22:11:19 +01:00
|
|
|
workflow_dispatch:
|
2024-07-27 11:37:31 +01:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linutil_build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-09-22 18:18:28 +01:00
|
|
|
- name: Install musl-tools
|
|
|
|
run: sudo apt-get update && sudo apt-get install musl-tools
|
|
|
|
|
2024-07-27 11:37:31 +01:00
|
|
|
- name: Cache Cargo registry
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-registry-
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-07-27 11:37:31 +01:00
|
|
|
- name: Cache Cargo index
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/git
|
|
|
|
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-index-
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-07-27 11:37:31 +01:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
targets: x86_64-unknown-linux-musl
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-07-30 22:04:31 +01:00
|
|
|
- name: Install cross-rs for cross-compilation
|
|
|
|
run: cargo install cross
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-07-30 22:04:31 +01:00
|
|
|
- name: Build x86_64 binary
|
2024-09-20 16:48:09 +01:00
|
|
|
run: cargo build --target-dir=build --release --verbose --target=x86_64-unknown-linux-musl --all-features
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-09-19 18:26:34 +01:00
|
|
|
- name: Build aarch64 binary
|
2024-09-20 16:48:09 +01:00
|
|
|
run: cross build --target-dir=build --release --verbose --target=aarch64-unknown-linux-musl --all-features
|
2024-09-19 18:26:34 +01:00
|
|
|
|
2024-07-31 11:42:27 +01:00
|
|
|
- name: Move binaries to build directory
|
|
|
|
run: |
|
|
|
|
mv build/x86_64-unknown-linux-musl/release/linutil build/linutil
|
2024-09-19 18:26:34 +01:00
|
|
|
mv build/aarch64-unknown-linux-musl/release/linutil build/linutil-aarch64
|
2024-08-20 22:09:08 +01:00
|
|
|
|
2024-07-27 11:37:31 +01:00
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
|
|
with:
|
|
|
|
commit_message: Commit Linutil
|
2024-09-19 18:26:34 +01:00
|
|
|
file_pattern: "build/linutil build/linutil-aarch64"
|
2024-08-20 22:46:59 +01:00
|
|
|
add_options: '--force'
|
2024-08-20 22:16:06 +01:00
|
|
|
if: success()
|
2024-09-16 21:52:48 +01:00
|
|
|
|
|
|
|
- name: Extract Version
|
|
|
|
id: extract_version
|
|
|
|
run: |
|
|
|
|
version=$(date +"%Y.%m.%d")
|
|
|
|
echo "version=$version" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Create and Upload Release
|
|
|
|
id: create_release
|
|
|
|
uses: softprops/action-gh-release@v2
|
|
|
|
with:
|
|
|
|
tag_name: ${{ env.version }}
|
|
|
|
name: Pre-Release ${{ env.version }}
|
|
|
|
body: |
|
|
|
|
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil)
|
2024-09-19 18:26:34 +01:00
|
|
|
![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/linutil/${{ env.version }}/linutil-aarch64)
|
|
|
|
|
2024-09-28 21:37:02 +01:00
|
|
|
append_body: true
|
|
|
|
generate_release_notes: true
|
2024-09-16 21:52:48 +01:00
|
|
|
files: |
|
|
|
|
./build/linutil
|
2024-09-19 18:26:34 +01:00
|
|
|
./build/linutil-aarch64
|
2024-09-16 21:52:48 +01:00
|
|
|
./start.sh
|
|
|
|
./startdev.sh
|
|
|
|
prerelease: true
|
|
|
|
env:
|
|
|
|
version: ${{ env.version }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-10-02 20:49:19 +01:00
|
|
|
|
2024-10-31 20:00:25 +00:00
|
|
|
- name: Upload build artifacts
|
|
|
|
uses: actions/upload-artifact@v4
|
2024-10-02 20:49:19 +01:00
|
|
|
with:
|
2024-10-31 20:00:25 +00:00
|
|
|
name: linutil-artifact
|
|
|
|
path: build/x86_64-unknown-linux-musl/release/linutil
|
|
|
|
compression-level: 0
|
|
|
|
overwrite: true
|