File tree 3 files changed +46
-0
lines changed
3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ services :
2
+ - docker
3
+ script : .travis/run-in-docker
Original file line number Diff line number Diff line change
1
+ #! /bin/sh -x
2
+
3
+ set -e
4
+ autoreconf -vfi
5
+ ./configure
6
+ make distcheck IGNORE_CHANGELOG=yes
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments