Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
105 lines
4.2 KiB
YAML
105 lines
4.2 KiB
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publishing ${{ matrix.build_target }}
|
|
runs-on: ${{ matrix.os }}
|
|
container: ${{ matrix.container }}
|
|
strategy:
|
|
matrix:
|
|
build_target: [linux-x86_64, linux-arm64, linux-armhf, macos-x86_64, windows-x86_64]
|
|
include:
|
|
- build_target: linux-x86_64
|
|
os: ubuntu-latest
|
|
container: rust
|
|
target: x86_64-unknown-linux-gnu
|
|
features: ''
|
|
dependencies: 'libpulse-dev libdbus-1-dev libncursesw5-dev libxcb-shape0-dev libxcb-xfixes0-dev'
|
|
- build_target: linux-arm64
|
|
os: ubuntu-latest
|
|
container: ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main
|
|
target: aarch64-unknown-linux-gnu
|
|
features: '--no-default-features --features alsa_backend,cursive/crossterm-backend'
|
|
dependencies: 'libasound2-dev:arm64 libssl-dev:arm64'
|
|
cross_arch: 'arm64'
|
|
pkg_config_path: '/usr/lib/aarch64-linux-gnu/pkgconfig/'
|
|
- build_target: linux-armhf
|
|
os: ubuntu-latest
|
|
container: ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:main
|
|
target: armv7-unknown-linux-gnueabihf
|
|
features: '--no-default-features --features alsa_backend,cursive/crossterm-backend'
|
|
dependencies: 'libasound2-dev:armhf libssl-dev:armhf'
|
|
cross_arch: 'armhf'
|
|
pkg_config_path: '/usr/lib/arm-linux-gnueabihf/pkgconfig/'
|
|
- build_target: macos-x86_64
|
|
os: macos-latest
|
|
target: x86_64-apple-darwin
|
|
features: '--no-default-features --features rodio_backend,pancurses_backend'
|
|
- build_target: windows-x86_64
|
|
os: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
features: '--no-default-features --features rodio_backend,pancurses_backend,share_clipboard,notify'
|
|
steps:
|
|
- name: Install Rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
target: ${{ matrix.target }}
|
|
toolchain: stable
|
|
- name: Install macOS dependencies
|
|
if: matrix.os == 'macos-latest'
|
|
run: brew install portaudio pkg-config
|
|
- name: Set up cross compilation
|
|
if: matrix.cross_arch
|
|
run: |
|
|
dpkg --add-architecture ${{ matrix.cross_arch }}
|
|
echo "PKG_CONFIG_PATH=${{ matrix.pkg_config_path }}" >> $GITHUB_ENV
|
|
echo "PKG_CONFIG_ALLOW_CROSS=1" >> $GITHUB_ENV
|
|
- name: Install Linux dependencies
|
|
if: startsWith(matrix.build_target, 'linux-')
|
|
run: |
|
|
apt update
|
|
apt install -y ${{ matrix.dependencies }}
|
|
- uses: actions/checkout@v4
|
|
name: Checkout src
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/
|
|
~/.cargo/git/db/
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
- name: Running cargo build
|
|
run: cargo build --release --target ${{ matrix.target }} ${{ matrix.features }}
|
|
- name: Extract git tag
|
|
shell: bash
|
|
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
id: extract_tag
|
|
- name: Packaging assets
|
|
shell: bash
|
|
run: |
|
|
cd target/${{ matrix.target }}/release
|
|
case ${{ matrix.target }} in
|
|
*-pc-windows-*)
|
|
7z -y a ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.zip ncspot.exe
|
|
sha256sum ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.zip > ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.sha256
|
|
;;
|
|
*)
|
|
tar czvf ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.tar.gz ncspot
|
|
shasum -a 256 ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.tar.gz > ncspot-${{ steps.extract_tag.outputs.tag }}-${{ matrix.build_target }}.sha256
|
|
;;
|
|
esac;
|
|
- name: Releasing assets
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: target/${{ matrix.target }}/release/ncspot-*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|