Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Deno setup and web UI build to CI

+11
+11
.github/workflows/ci.yml
··· 58 58 key: linux-x86_64-cargo-${{ hashFiles('**/Cargo.lock') }} 59 59 restore-keys: linux-x86_64-cargo- 60 60 61 + - name: Setup Deno 62 + uses: denoland/setup-deno@v2 63 + with: 64 + deno-version: v2.x 65 + 66 + - name: Build Web UI 67 + run: | 68 + cd webui/rockbox 69 + deno install 70 + deno run build 71 + 61 72 - name: Rust flags 62 73 run: echo "RUSTFLAGS=-C target-cpu=x86-64 -A warnings" >> $GITHUB_ENV 63 74