Skip to content

Commit

Permalink
v9.2
Browse files Browse the repository at this point in the history
- CI | Amiberry: Test latest commit which supports selecting the system "default" audio device, instead of raw hardware sound cards only: BlitterStudio/amiberry#1241
  • Loading branch information
MichaIng committed Mar 14, 2024
1 parent 235e755 commit 076cd79
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .build/software/Amiberry/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,13 @@ fi
v_ami=$(curl -sSf 'https://api.github.com/repos/BlitterStudio/amiberry/releases/latest' | mawk -F\" '/^ "tag_name"/{print $4}')
[[ $v_ami ]] || { G_DIETPI-NOTIFY 1 'No latest Amiberry version found, aborting ...'; exit 1; }
v_ami=${v_ami#v}
v_ami='master'
G_DIETPI-NOTIFY 2 "Building Amiberry version \e[33m$v_ami\e[90m for platform: \e[33m$PLATFORM"
G_EXEC cd /tmp
G_EXEC curl -sSfLO "https://github.com/BlitterStudio/amiberry/archive/v$v_ami.tar.gz"
G_EXEC curl -sSfLO "https://github.com/BlitterStudio/amiberry/archive/$v_ami.tar.gz"
[[ -d amiberry-$v_ami ]] && G_EXEC rm -R "amiberry-$v_ami"
G_EXEC tar xf "v$v_ami.tar.gz"
G_EXEC rm "v$v_ami.tar.gz"
G_EXEC tar xf "$v_ami.tar.gz"
G_EXEC rm "$v_ami.tar.gz"
G_EXEC cd "amiberry-$v_ami"
# - RISC-V: Workaround for missing ld.gold: https://github.com/BlitterStudio/amiberry/issues/1213
RISCV_LD=()
Expand Down Expand Up @@ -204,7 +205,7 @@ suffix=${old_version#*-dietpi}
# - control
cat << _EOF_ > "$DIR/DEBIAN/control"
Package: amiberry
Version: $v_ami
Version: 5.6.9-dietpi0
Architecture: $(dpkg --print-architecture)
Maintainer: MichaIng <micha@dietpi.com>
Date: $(date -u '+%a, %d %b %Y %T %z')
Expand Down

0 comments on commit 076cd79

Please sign in to comment.