whitespace cleanups
This commit is contained in:
parent
68838c8d9d
commit
08bff6df00
5 changed files with 13 additions and 14 deletions
|
@ -91,7 +91,7 @@ Release procedure
|
||||||
- Copy gnulib/build-aux/gnupload to somewhere on your $PATH
|
- Copy gnulib/build-aux/gnupload to somewhere on your $PATH
|
||||||
- Run gnupload --to ftp.gnu.org:stow --symlink-regex stow-7.8.9.tar.*
|
- 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
|
- info-stow@gnu.org
|
||||||
- stow-devel@gnu.org
|
- stow-devel@gnu.org
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Build docker image: `docker build -t stowtest`
|
# 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`
|
# `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest`
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \
|
RUN DEBIAN_FRONTEND=noninteractive \
|
||||||
|
|
|
@ -6,10 +6,10 @@
|
||||||
# For each perl version installed.
|
# For each perl version installed.
|
||||||
for p_version in $(perlbrew list | sed 's/ //g'); do
|
for p_version in $(perlbrew list | sed 's/ //g'); do
|
||||||
# Switch to it.
|
# Switch to it.
|
||||||
perlbrew use $p_version
|
perlbrew use $p_version
|
||||||
# and install the needed modules.
|
# 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
|
done
|
||||||
|
|
||||||
# Cleanup to remove any temp files.
|
# Cleanup to remove any temp files.
|
||||||
perlbrew clean
|
perlbrew clean
|
||||||
|
|
|
@ -11,21 +11,20 @@ set -euf -o pipefail
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
|
|
||||||
for p_version in $(perlbrew list | sed 's/ //g'); do
|
for p_version in $(perlbrew list | sed 's/ //g'); do
|
||||||
|
|
||||||
perlbrew use $p_version
|
perlbrew use $p_version
|
||||||
|
|
||||||
echo $(perl --version)
|
echo $(perl --version)
|
||||||
|
|
||||||
# Install stow
|
# Install stow
|
||||||
autoreconf --install
|
autoreconf --install
|
||||||
eval `perl -V:siteprefix`
|
eval `perl -V:siteprefix`
|
||||||
./configure --prefix=$siteprefix && make
|
./configure --prefix=$siteprefix && make
|
||||||
make cpanm
|
make cpanm
|
||||||
|
|
||||||
# Run tests
|
# Run tests
|
||||||
make distcheck
|
make distcheck
|
||||||
perl Build.PL && ./Build build && cover -test
|
perl Build.PL && ./Build build && cover -test
|
||||||
./Build distcheck
|
./Build distcheck
|
||||||
done
|
done
|
||||||
|
|
||||||
make distclean
|
make distclean
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Run the docker image that test.
|
# Run the docker image that test.
|
||||||
docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest
|
docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest
|
||||||
|
|
Loading…
Reference in a new issue