-
Notifications
You must be signed in to change notification settings - Fork 1
132 lines (113 loc) · 4.38 KB
/
ci.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: CI
on: [push, pull_request]
defaults:
run:
shell: bash
env:
GST_GIT_REPO: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
GST_GIT_BRANCH: main
RPI_DIR: /rpi-tools/arm-bcm2708/arm-linux-gnueabihf
RPI_SYSROOT: /rpi-tools/arm-bcm2708/arm-linux-gnueabihf/arm-linux-gnueabihf/sysroot
RPI_LINKER: /rpi-tools/arm-bcm2708/arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc
jobs:
# This job must run on the runner because hashFiles() operates on the runner
# by design, not inside the defined container (actions/runner#837).
bust-cache:
runs-on: ubuntu-latest
outputs:
container_version: ${{ steps.container.outputs.version }}
spotify_src: ${{ steps.gstsrc.outputs.hash }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Find latest container version
id: container
run: |
echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- name: Checkout gst-plugins-rs
run: git clone --depth 1 -b ${{ env.GST_GIT_BRANCH }} ${{ env.GST_GIT_REPO }}
- name: Find latest spotify src commit
id: gstsrc
run: |
echo "hash=$(git -C gst-plugins-rs rev-parse --short HEAD:audio/spotify)" >> $GITHUB_OUTPUT
main:
strategy:
fail-fast: false
matrix:
include:
- target: arm-unknown-linux-gnueabihf
linker: arm-linux-gnueabihf
rust_flags: -C linker=$RPI_LINKER -L$RPI_SYSROOT/lib -L$RPI_SYSROOT/usr/lib
runs-on: ubuntu-20.04
container: ghcr.io/mopidy/gst-plugin-spotify-build:latest
needs: bust-cache
env:
GST_PLUGIN: gst-plugin-spotify
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: ${{ matrix.target }}
- name: Checkout gst-plugins-rs
run: |
git clone --depth 1 -b ${{ env.GST_GIT_BRANCH }} ${{ env.GST_GIT_REPO }}
cp gst-plugins-rs/audio/spotify/Cargo.toml Cargo.toml.orig
- name: Cache cargo stuff
env:
CONTAINER_VERSION: gst-plugin-spotify-build:${{ needs.bust-cache.outputs.container_version }}
uses: actions/cache@v3
with:
path: |
~/.cargo
gst-plugins-rs/target/${{ matrix.target }}/release
key: ${{ env.CONTAINER_VERSION }}-${{ matrix.target }}
restore-keys: |
${{ env.CONTAINER_VERSION }}-
- name: Install cargo deb
run: cargo install cargo-deb
- name: Configure PKG_CONFIG cross environment
if: matrix.linker != ''
run: |
PKG_CONFIG_ALLOW_CROSS=1
PKG_CONFIG_PATH="/usr/lib/${{ matrix.linker }}/pkgconfig"
echo "PKG_CONFIG_ALLOW_CROSS=$PKG_CONFIG_ALLOW_CROSS" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >> $GITHUB_ENV
- name: Configure RUSTFLAGS
if: matrix.rust_flags != ''
run: |
RUSTFLAGS="${{ matrix.rust_flags }}"
echo $(eval "echo RUSTFLAGS=$RUSTFLAGS") >> $GITHUB_ENV
- name: Build gst-plugins-rs
run: |
env | sort
cd gst-plugins-rs
cargo build --target=${{ matrix.target }} --package ${GST_PLUGIN} --release --config 'profile.release.strip = true'
- name: Upload lib
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }} lib
path: gst-plugins-rs/target/${{ matrix.target }}/release/*.so
- name: Create deb package
env:
DEB_GLOB: target/${{ matrix.target }}/debian/*.deb
run: |
echo "Append package metadata to Cargo.toml"
cat Cargo.toml.orig Cargo.toml.deb > gst-plugins-rs/audio/spotify/Cargo.toml
echo "Fixup target-specific library install path"
GST_PLUGINS_DIR=$(pkg-config --variable=pluginsdir gstreamer-1.0)
sed -i "s@%GST_PLUGINS_DIR%@$GST_PLUGINS_DIR@" gst-plugins-rs/audio/spotify/Cargo.toml
echo "Create package"
cd gst-plugins-rs
cargo deb -v --target=${{ matrix.target }} --package ${GST_PLUGIN} --no-build
DEB_PATH=$(readlink -m $(find target/${{ matrix.target }}/debian/*.deb))
echo "DEB_PATH=$DEB_PATH" >> $GITHUB_ENV
- name: Check deb
run: dpkg-deb --field $DEB_PATH Package Architecture Version Installed-Size
- name: Upload deb
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }} Debian Package
path: ${{ env.DEB_PATH }}