forked from izer-xyz/librespot-openwrt
-
Notifications
You must be signed in to change notification settings - Fork 2
142 lines (129 loc) · 5.48 KB
/
build.yml
File metadata and controls
142 lines (129 loc) · 5.48 KB
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
133
134
135
136
137
138
139
140
141
142
name: Publish
on:
workflow_dispatch:
inputs:
openwrt_version:
description: 'OpenWrt version'
# Use 25.12-SNAPSHOT for APK and 24.10-SNAPSHOT for IPK
default: '25.12-SNAPSHOT'
required: true
type: string
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: ${{ matrix.arch }} build
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
arch:
## See https://downloads.openwrt.org/snapshots/packages/
## Rust Tier 2 with Host Tools ####
## aarch64-unknown-linux-musl #####
- aarch64_cortex-a53 # OK. RPi 3+
- aarch64_cortex-a72 # OK
- aarch64_cortex-a76 # OK
- aarch64_generic # OK
## Tier 2 without Host Tools ######
## arm-unknown-linux-musleabi* ####
- arm_arm1176jzf-s_vfp # OK. RPi Zero
- arm_arm926ej-s # OK
- arm_cortex-a15_neon-vfpv4 # OK
- arm_cortex-a5_vfpv4 # OK
- arm_cortex-a7 # OK
- arm_cortex-a7_neon-vfpv4 # OK
- arm_cortex-a7_vfpv4 # Fails with: Skipping librespot due to unsupported architecture. Target at91/sama7
- arm_cortex-a8_vfpv3 # OK
- arm_cortex-a9 # OK
- arm_cortex-a9_neon # OK
- arm_cortex-a9_vfpv3-d16 # OK
- arm_fa526 # OK
- arm_xscale # OK
- armeb_xscale # Fails with: Skipping librespot due to unsupported architecture. Target ixp4xx/generic
## Tier 2 with Host Tools #########
## loongarch64-unknown-linux-musl #
- loongarch64_generic # OK
## Tier 2 with Host Tools #########
## riscv64gc-unknown-linux-musl ###
- riscv64_generic # NEW
- riscv64_riscv64 # OK
## Tier 2 with Host Tools ##########
## x86_64-unknown-linux-musl #######
- x86_64 # OK
## Tier 2 without Host Tools ######
## i*86-unknown-linux-musl ########
- i386_pentium-mmx # Fails with: Ring does not compile intel.rs due to missing SSE. Targets x86/geode and x86/legacy
- i386_pentium4 # Fails with: Ring does not compile intel.rs due to missing SSE. Target x86/generic
## Tier 3 #########################
## mips*-unknown-linux-musl #######
- mips64_mips64r2 # OK
- mips64_octeonplus # OK
- mips64el_mips64r2 # Fails with: Warning: Skipping librespot due to unsupported architecture. Target malta/le64
- mips_24kc # OK
- mips_4kec # Fails with: Warning: Skipping librespot due to unsupported architecture. Target realtek/rtl838x
- mips_mips32 # OK
- mipsel_24kc # OK
- mipsel_24kc_24kf # OK
- mipsel_74kc # OK
- mipsel_mips32 # OK
## Tier 3 #########################
## powerpc*-unknown-linux-musl ####
- powerpc64_e5500 # OK
- powerpc_464fp # OK
- powerpc_8548 # OK
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build
uses: openwrt/gh-action-sdk@main
env:
ARCH: ${{ matrix.arch }}-${{ github.event.inputs.openwrt_version }}
V: sc
PACKAGES: librespot
- name: List outputs
run: |
find bin/packages
# Renaming APK files to include architecture suffix
# e.g., librespot_0.8.0-r1.apk -> librespot_0.8.0-r1_aarch64_cortex-a53.apk
if ls bin/packages/${{ matrix.arch }}/action/*.apk 1> /dev/null 2>&1; then
echo "Processing APK files..."
for apk_file in bin/packages/${{ matrix.arch }}/action/*.apk; do
filename=$(basename "$apk_file")
new_filename="${filename%.apk}_${{ matrix.arch }}.apk"
mv bin/packages/${{ matrix.arch }}/action/"$filename" bin/packages/${{ matrix.arch }}/action/"$new_filename"
done
else
echo "No APK files found"
fi
- uses: actions/upload-artifact@v6
with:
name: ls-${{ matrix.arch }}
path: |
bin/packages/${{ matrix.arch }}/action/*.ipk
bin/packages/${{ matrix.arch }}/action/*.apk
release:
name: Release all packages
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v6
with:
path: artifacts
pattern: ls-*
merge-multiple: true
- name: List outputs
id: list
run: |
find artifacts
ls artifacts | head -n 1 | awk -F"_" '{ print "librespot_version="$2 }' >> "$GITHUB_OUTPUT"
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: true
tag_name: v${{ steps.list.outputs.librespot_version }}_${{ github.event.inputs.openwrt_version }}_${{ github.run_number }}
body: |
Librespot v${{ steps.list.outputs.librespot_version }} OpenWrt ${{ github.event.inputs.openwrt_version }} build
files: |
artifacts/*