Skip to content

Commit 9fc57c0

Browse files
committed
fix: ci
1 parent a49e3bf commit 9fc57c0

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/platforms.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ jobs:
107107
steps:
108108
- uses: actions/checkout@v5
109109

110-
- name: Cache Linux audio packages
111-
uses: awalsh128/cache-apt-pkgs-action@latest
112-
with:
113-
packages: ${{ env.PACKAGES_LINUX }}
114-
115110
- name: Determine MSRV for all-features
116111
id: msrv
117112
uses: ./.github/actions/determine-msrv

Cross.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[target.armv7-unknown-linux-gnueabihf]
22
dockerfile = "Dockerfile"
3+
build-args = { CROSS_BASE_IMAGE = "ubuntu:24.04" }
34

45
[target.armv7-unknown-linux-gnueabihf.env]
5-
passthrough = [
6-
"RUSTFLAGS",
7-
]
6+
passthrough = ["RUSTFLAGS"]

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
ARG CROSS_BASE_IMAGE
2-
FROM $CROSS_BASE_IMAGE
1+
FROM ubuntu:24.04
32

43
ENV PKG_CONFIG_ALLOW_CROSS=1
54
ENV PKG_CONFIG_PATH=/usr/lib/arm-linux-gnueabihf/pkgconfig/
65

76
RUN dpkg --add-architecture armhf && \
87
apt-get update && \
98
apt-get install libasound2-dev:armhf -y && \
10-
apt-get install libjack-jackd2-dev:armhf libjack-jackd2-0:armhf -y \
9+
apt-get install libjack-jackd2-dev:armhf libjack-jackd2-0:armhf -y && \
10+
apt-get install libpipewire-0.3-dev:armhf -y \

0 commit comments

Comments
 (0)