Skip to content

Commit 114cc70

Browse files
authored
* .travis.yml: Enable distcheck CI. (#3)
1 parent b17eb29 commit 114cc70

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
services:
2+
- docker
3+
script: .travis/run-in-docker

.travis/distcheck

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#! /bin/sh -x
2+
3+
set -e
4+
autoreconf -vfi
5+
./configure
6+
make distcheck IGNORE_CHANGELOG=yes

.travis/run-in-docker

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#! /bin/bash -x
2+
3+
container_id=$(
4+
docker run -d -ti -v `pwd`:/workdir:Z -u $(id -u) registry.fedoraproject.org/fedora:rawhide bash
5+
)
6+
7+
cleanup ()
8+
{
9+
docker rm --force "$container_id"
10+
}
11+
12+
trap cleanup EXIT
13+
14+
run_in_container ()
15+
{
16+
local uid=$(id -u)
17+
if ${as_root-false}; then
18+
uid=0
19+
fi
20+
21+
docker exec -u $uid -ti "$container_id" "$@"
22+
}
23+
24+
buildrequires='
25+
autoconf-archive
26+
automake
27+
help2man
28+
elinks
29+
findutils
30+
docbook-utils
31+
postgresql-devel
32+
postgresql-server
33+
'
34+
35+
as_root=true \
36+
run_in_container bash -c "dnf install -y $(echo $buildrequires)"
37+
run_in_container bash -c "set -x ; cd /workdir && ./.travis/distcheck"

0 commit comments

Comments
 (0)