mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 01:59:16 +08:00
171 lines
5.0 KiB
YAML
171 lines
5.0 KiB
YAML
name: Build Nightly Releases
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build-nightly-cross:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUST_BACKTRACE: full
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- target: x86_64-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: x86_64-unknown-linux-musl
|
|
toolchain: stable
|
|
- target: aarch64-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: aarch64-unknown-linux-musl
|
|
toolchain: stable
|
|
- target: mips-unknown-linux-gnu
|
|
toolchain: nightly
|
|
- target: mipsel-unknown-linux-gnu
|
|
toolchain: nightly
|
|
- target: mips64el-unknown-linux-gnuabi64
|
|
toolchain: nightly
|
|
- target: x86_64-unknown-freebsd
|
|
toolchain: stable
|
|
- target: x86_64-unknown-netbsd
|
|
toolchain: stable
|
|
- target: loongarch64-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: loongarch64-unknown-linux-musl
|
|
toolchain: stable
|
|
- target: powerpc-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: powerpc64-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: powerpc64le-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: riscv64gc-unknown-linux-gnu
|
|
toolchain: stable
|
|
- target: riscv64gc-unknown-linux-musl
|
|
toolchain: stable
|
|
- target: aarch64-linux-android
|
|
toolchain: stable
|
|
- target: x86_64-linux-android
|
|
toolchain: stable
|
|
|
|
steps:
|
|
- name: Free Disk Space (Ubuntu)
|
|
uses: jlumbroso/free-disk-space@main
|
|
|
|
- name: Install LLVM and Clang
|
|
run: sudo apt update && sudo apt install -y clang
|
|
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup toolchain install ${{ matrix.platform.toolchain }}
|
|
rustup default ${{ matrix.platform.toolchain }}
|
|
rustup override set ${{ matrix.platform.toolchain }}
|
|
|
|
- name: Install cross
|
|
run: cargo install cross --git https://github.com/cross-rs/cross
|
|
|
|
- name: Build ${{ matrix.platform.target }}
|
|
timeout-minutes: 120
|
|
run: |
|
|
compile_target=${{ matrix.platform.target }}
|
|
|
|
compile_features="-f full"
|
|
|
|
if [[ "$compile_target" == *"-windows-"* ]]; then
|
|
compile_features="$compile_features -f winservice"
|
|
fi
|
|
|
|
if [[ "$compile_target" == "mips-"* || "$compile_target" == "mipsel-"* || "$compile_target" == "mips64-"* || "$compile_target" == "mips64el-"* ]]; then
|
|
sudo apt-get update -y && sudo apt-get install -y upx;
|
|
if [[ "$?" == "0" ]]; then
|
|
compile_compress="-u"
|
|
fi
|
|
|
|
compile_nightly="-n"
|
|
#compile_cargo_flags="-Z build-std=std,panic_abort,proc_macro"
|
|
fi
|
|
|
|
cd build
|
|
./build-release -t ${{ matrix.platform.target }} $compile_features $compile_compress $compile_nightly $compile_cargo_flags
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: ${{ matrix.platform.target }}
|
|
path: build/release/*
|
|
|
|
build-nightly-unix:
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
BUILD_EXTRA_FEATURES: "full"
|
|
RUST_BACKTRACE: full
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest]
|
|
target:
|
|
- x86_64-apple-darwin
|
|
- aarch64-apple-darwin
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install GNU tar
|
|
if: runner.os == 'macOS'
|
|
run: |
|
|
brew install gnu-tar
|
|
# echo "::add-path::/usr/local/opt/gnu-tar/libexec/gnubin"
|
|
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
rustup override set stable
|
|
rustup target add --toolchain stable ${{ matrix.target }}
|
|
|
|
- name: Build release
|
|
shell: bash
|
|
run: |
|
|
./build/build-host-release -t ${{ matrix.target }}
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: ${{ matrix.target }}
|
|
path: build/release/*
|
|
|
|
build-nightly-windows:
|
|
runs-on: windows-latest
|
|
env:
|
|
RUSTFLAGS: "-C target-feature=+crt-static"
|
|
RUST_BACKTRACE: full
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: ilammy/setup-nasm@v1
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
rustup override set stable
|
|
|
|
- name: Build release
|
|
run: |
|
|
pwsh ./build/build-host-release.ps1 "full winservice"
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: windows-native
|
|
path: build/release/*
|