#!/bin/sh # Create the build system. set -e -x # Generate stubs for translations. langs=`find po/doc -type f -name 'guix-manual*.po' \ | sed -e 's,.*/guix-manual\.,,;s,\.po$,,'` for lang in ${langs}; do if [ ! -e "doc/guix.${lang}.texi" ]; then echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi" echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-manual.${lang}.po" fi done langs=`find po/doc -type f -name 'guix-cookbook*.po' \ | sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'` for lang in ${langs}; do if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi" # Ensure .po file is newer. touch "po/doc/guix-cookbook.${lang}.po" fi done exec autoreconf -vfi ption value='koszko-scripts'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/containers.scm
AgeCommit message (Expand)Author
2017-05-31tests: Fix race condition in 'container-excursion*' test....Ludovic Courtès
2017-02-07linux-container: Add 'container-excursion*'....Ludovic Courtès
2016-11-13tests: Don't check file-systems in container tests....Andy Patterson
2016-11-10container: Pass a list of <file-system> objects as things to mount....Ludovic Courtès
2016-10-19container: Allow 'container-excursion' to the same namespaces....Ludovic Courtès
2016-06-25tests: Skip all the container tests when needed....Ludovic Courtès
2016-05-31container: Gracefully report mount errors in the child process....Ludovic Courtès
2016-04-03build: Add a Guile custom test driver using SRFI-64....Mathieu Lirzin
2015-11-03build: container: Add feature test predicates....David Thompson
2015-10-10build: container: Fix call-with-clean-exit....David Thompson
2015-08-11tests: containers: Skip if setgroups file does not exist....David Thompson
2015-08-08build: container: Add #:host-uids argument to call-with-container....David Thompson
2015-07-20tests: Skip container tests if namespaces are not available....David Thompson