tests: Fix guix-system.sh test.

The regression was introduce with commit
c7793b82ef ("gnu: raspberry-pi: Add a
bootloader-chain for the Raspberry Pi and os examples.") due to the examples
needing to be built for the aarch64-linux system.

* tests/guix-system.sh: Invoke guix system build with '--system=aarch64-linux'
to build the Raspberry Pi systems.
This commit is contained in:
Maxim Cournoyer 2022-12-04 00:50:28 -05:00
parent 08dc9f2ca2
commit 93309efdce
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 0 deletions

View File

@ -342,6 +342,10 @@ for example in gnu/system/examples/*.tmpl; do
# 'asus-c201.tmpl' uses 'linux-libre-arm-generic', which is an
# ARM-only package.
options="--system=armhf-linux";;
*raspberry*)
# The Raspberry Pi templates 'linux-libre-arm64-generic', which is
# an ARM-only package.
options="--system=aarch64-linux";;
*vm-image*)
# The VM image tries to build 'current-guix' as per 'guix pull'.
# Skip it.