-
-
Notifications
You must be signed in to change notification settings - Fork 217
92 lines (89 loc) · 3.45 KB
/
cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: CD
on:
push:
tags:
- "v*.*.*"
env:
CARGO_TERM_COLOR: always
TERM: xterm
jobs:
publish:
name: Publishing ${{ matrix.build_target }}
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
strategy:
matrix:
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: macos-x86_64
os: macos-latest
target: x86_64-apple-darwin
features: '--no-default-features --features rodio_backend,pancurses_backend'
- build_target: macos-aarch64
os: macos-14
target: aarch64-apple-darwin
artifact_suffix: macos-aarch64
features: '--no-default-features --features rodio_backend,cursive/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:
- uses: actions/checkout@v4
name: Checkout src
- name: Install rustup
if: runner.os != 'Windows'
shell: bash
run: |
if ! command -v rustup &>/dev/null; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
fi
- name: Add cross-compilation target
run: rustup target add ${{ matrix.target }}
- name: Install macOS dependencies
if: matrix.os == 'macos-latest'
run: brew install portaudio pkg-config
- name: Install Linux dependencies
if: startsWith(matrix.build_target, 'linux-')
run: |
apt update
apt install -y ${{ matrix.dependencies }}
- uses: actions/cache@v4
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@v2
with:
files: target/${{ matrix.target }}/release/ncspot-*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}