2024-08-08 01:22:59 +08:00
|
|
|
name: staticbuilds
|
|
|
|
|
|
|
|
on:
|
|
|
|
# release:
|
|
|
|
# types: [published]
|
|
|
|
# schedule:
|
|
|
|
# - cron: "14 13 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
|
|
|
CTEST_PARALLEL_LEVEL: "1"
|
|
|
|
CMAKE_BUILD_PARALLEL_LEVEL: "4"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
staticbuilds:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: dtolnay/rust-toolchain@1.70
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare
|
|
|
|
run: |
|
|
|
|
sudo apt install python3-sphinx
|
|
|
|
rustup target add x86_64-unknown-linux-musl
|
|
|
|
rustup target add aarch64-unknown-linux-musl
|
|
|
|
sudo apt install musl-tools crossbuild-essential-arm64 -y
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2024-12-14 20:34:03 +08:00
|
|
|
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2" CMAKE_WITH_GETTEXT=0 CC=aarch64-linux-gnu-gcc RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc -C link-arg=-lgcc -C link-arg=-D_FORTIFY_SOURCE=0" cargo build --release --target aarch64-unknown-linux-musl
|
2024-08-08 01:22:59 +08:00
|
|
|
cargo build --release --target x86_64-unknown-linux-musl
|
|
|
|
- name: Compress
|
|
|
|
run: |
|
|
|
|
tar -cazf fish-amd64.tar.xz -C target/x86_64-unknown-linux-musl/release/ fish{,_indent,_key_reader}
|
|
|
|
tar -cazf fish-aarch64.tar.xz -C target/aarch64-unknown-linux-musl/release/ fish{,_indent,_key_reader}
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: fish
|
|
|
|
path: |
|
|
|
|
fish-amd64.tar.xz
|
|
|
|
fish-aarch64.tar.xz
|
|
|
|
retention-days: 14
|