whitespace cleanups

This commit is contained in:
Adam Spiers 2016-11-20 21:51:41 +00:00
parent 68838c8d9d
commit 08bff6df00
5 changed files with 13 additions and 14 deletions

View file

@ -91,7 +91,7 @@ Release procedure
- Copy gnulib/build-aux/gnupload to somewhere on your $PATH
- Run gnupload --to ftp.gnu.org:stow --symlink-regex stow-7.8.9.tar.*
- Send release announcements to
- Send release announcements to
- info-stow@gnu.org
- stow-devel@gnu.org

View file

@ -1,5 +1,5 @@
# Build docker image: `docker build -t stowtest`
# Run tests: (from stow src directory)
# Run tests: (from stow src directory)
# `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest`
FROM debian:jessie
RUN DEBIAN_FRONTEND=noninteractive \

View file

@ -6,10 +6,10 @@
# For each perl version installed.
for p_version in $(perlbrew list | sed 's/ //g'); do
# Switch to it.
perlbrew use $p_version
perlbrew use $p_version
# and install the needed modules.
/usr/local/perlbrew/bin/cpanm -n Devel::Cover::Report::Coveralls Test::More Test::Output
/usr/local/perlbrew/bin/cpanm -n Devel::Cover::Report::Coveralls Test::More Test::Output
done
# Cleanup to remove any temp files.
# Cleanup to remove any temp files.
perlbrew clean

View file

@ -11,21 +11,20 @@ set -euf -o pipefail
IFS=$'\n\t'
for p_version in $(perlbrew list | sed 's/ //g'); do
perlbrew use $p_version
echo $(perl --version)
# Install stow
autoreconf --install
eval `perl -V:siteprefix`
./configure --prefix=$siteprefix && make
make cpanm
autoreconf --install
eval `perl -V:siteprefix`
./configure --prefix=$siteprefix && make
make cpanm
# Run tests
make distcheck
perl Build.PL && ./Build build && cover -test
./Build distcheck
make distcheck
perl Build.PL && ./Build build && cover -test
./Build distcheck
done
make distclean

View file

@ -1,4 +1,4 @@
#!/bin/bash
# Run the docker image that test.
# Run the docker image that test.
docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest