diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-18 11:20:56 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-19 20:24:28 -0400 |
commit | 3c3dbb029084e79abef5ebc535689152ebbe9557 (patch) | |
tree | b141c63aad186845ba275293aa0710bd64bed604 | |
parent | 9c15743c4a389aa8765db864cd8398003b093e6a (diff) | |
download | guix-3c3dbb029084e79abef5ebc535689152ebbe9557.tar.gz guix-3c3dbb029084e79abef5ebc535689152ebbe9557.zip |
tests: guix-system: Drop the i686-linux desktop image test.
Desktop these days means having Rust support (GNOME), which i686 currently
lacks on Guix.
* tests/guix-system.sh: Do not attempt to build the desktop.tmpl image for
i686-linux.
-rw-r--r-- | tests/guix-system.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-system.sh b/tests/guix-system.sh index 16c02e6e4c..1dbd5a0b85 100644 --- a/tests/guix-system.sh +++ b/tests/guix-system.sh @@ -359,7 +359,7 @@ for example in gnu/system/examples/*.tmpl; do done # Make sure the desktop image can be built on major architectures. -for system in x86_64-linux i686-linux aarch64-linux +for system in x86_64-linux aarch64-linux do guix system -n image -s "$system" gnu/system/examples/desktop.tmpl done |