Skip a test that randomly fails on ARMv7: . --- a/tests/mpz/reuse.c +++ b/tests/mpz/reuse.c @@ -213,6 +213,7 @@ main (int argc, char **argv) mpz_t bs; unsigned long bsi, size_range; + exit (77); /* skip */ tests_start (); TESTS_REPS (reps, argv, argc); ko' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-09-17gnu: file-systems: Add variable %base-live-file-systems....* gnu/system/file-systems.scm (%base-live-file-systems): New variable. * gnu/system/install.scm (installation-os): Use %base-live-file-systems. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2023-08-08file-systems: Use cgroups v2....cgroup v2 is the next generation of the control groups API. This patch replaces the cgroup v1 file systems with the unified cgroup v2 file system. cgroup v2 allows for things like containerd/podman to run rootless containers and opens guix system up to running things like Kubernetes. Thanks to Hilton Chain <hako@ultrarare.space> for suggesting the Docker service change. * gnu/system/file-systems.scm (%control-groups): Change to a single "cgroup2" mount point. * gnu/services/docker.scm (docker-shepherd-service): Trim 'requirement' field accordingly. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Sam Lockart