mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 07:29:59 -07:00
The release workflow now produces a tarball named `rayhunter-v<version>.tar`, where the version is dynamically extracted from `rayhunter/bin/Cargo.toml`. Additionally, the archive contains a top-level directory named `rayhunter-v<version>/`, making each release artifact clearly identifiable and self-contained by version. This change improves clarity for downstream consumers and simplifies managing multiple versions.
120 lines
4.1 KiB
YAML
120 lines
4.1 KiB
YAML
name: Build Release
|
|
|
|
on:
|
|
push:
|
|
branches: [main, "release-*"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build_serial_and_check:
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- name: ubuntu-24
|
|
os: ubuntu-latest
|
|
target: x86_64-unknown-linux-musl
|
|
- name: ubuntu-24-aarch64
|
|
os: ubuntu-24.04-arm
|
|
target: aarch64-unknown-linux-musl
|
|
- name: macos-arm
|
|
os: macos-latest
|
|
target: aarch64-apple-darwin
|
|
- name: macos-intel
|
|
os: macos-13
|
|
target: x86_64-apple-darwin
|
|
- name: windows-x86_64
|
|
os: windows-latest
|
|
target: x86_64-pc-windows-gnu
|
|
runs-on: ${{ matrix.platform.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.platform.target }}
|
|
- name: Build serial
|
|
run: cargo build --bin serial --release --target ${{ matrix.platform.target }}
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: serial-${{ matrix.platform.name }}
|
|
path: target/${{ matrix.platform.target }}/release/serial${{ matrix.platform.os == 'windows-latest' && '.exe' || '' }}
|
|
if-no-files-found: error
|
|
- uses: actions/checkout@v4
|
|
- name: Build check
|
|
run: cargo build --bin rayhunter-check --release
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: rayhunter-check-${{ matrix.platform.name }}
|
|
path: target/release/rayhunter-check${{ matrix.platform.os == 'windows-latest' && '.exe' || '' }}
|
|
if-no-files-found: error
|
|
build_rootshell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: armv7-unknown-linux-musleabihf
|
|
- name: Build rootshell (arm32)
|
|
run: cargo build --bin rootshell --target armv7-unknown-linux-musleabihf --release
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: rootshell
|
|
path: target/armv7-unknown-linux-musleabihf/release/rootshell
|
|
if-no-files-found: error
|
|
build_rayhunter:
|
|
strategy:
|
|
matrix:
|
|
device:
|
|
- name: tplink
|
|
- name: orbic
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: armv7-unknown-linux-musleabihf
|
|
- name: Build rayhunter-daemon (arm32)
|
|
run: |
|
|
pushd bin/web
|
|
npm install
|
|
npm run build
|
|
popd
|
|
cargo build --bin rayhunter-daemon --target armv7-unknown-linux-musleabihf --release --no-default-features --features ${{ matrix.device.name }}
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: rayhunter-daemon-${{ matrix.device.name }}
|
|
path: target/armv7-unknown-linux-musleabihf/release/rayhunter-daemon
|
|
if-no-files-found: error
|
|
build_release_zip:
|
|
needs:
|
|
- build_serial_and_check
|
|
- build_rootshell
|
|
- build_rayhunter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/download-artifact@v4
|
|
- name: Fix executable permissions on binaries
|
|
run: chmod +x serial-*/serial rayhunter-check-*/rayhunter-check rayhunter-daemon-*/rayhunter-daemon
|
|
- name: Get Rayhunter version
|
|
id: get_version
|
|
run: echo "VERSION=$(grep '^version' bin/Cargo.toml | head -n 1 | cut -d'"' -f2)" >> $GITHUB_ENV
|
|
- name: Setup versioned release directory
|
|
run: |
|
|
VERSIONED_DIR="rayhunter-v${{ env.VERSION }}"
|
|
mkdir "$VERSIONED_DIR"
|
|
mv dist/* "$VERSIONED_DIR"/
|
|
- name: Archive release directory
|
|
run: |
|
|
VERSIONED_DIR="rayhunter-v${{ env.VERSION }}"
|
|
tar -cvf "$VERSIONED_DIR.tar" "$VERSIONED_DIR"
|
|
- name: Upload release
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: rayhunter-v${{ env.VERSION }}.tar
|
|
path: rayhunter-v${{ env.VERSION }}.tar
|
|
if-no-files-found: error
|