aboutsummaryrefslogtreecommitdiff
path: root/contrib/scripts/revisionary.sh
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-05-19 14:43:13 +0000
committerNils Gillmann <ng0@n0.is>2018-05-19 14:43:13 +0000
commit6ab60d4920bb3199aee8cd872b930e9e3e808ba7 (patch)
tree3d761dbf8793a1d2422fbd14667255c7e0292ea4 /contrib/scripts/revisionary.sh
parentc2f27dfe8218545c327ab49d225a49910347c5c6 (diff)
downloadgnunet-6ab60d4920bb3199aee8cd872b930e9e3e808ba7.tar.gz
gnunet-6ab60d4920bb3199aee8cd872b930e9e3e808ba7.zip
Restructure contrib folder.
contrib/pogen.sh -> bin/pogen.sh bootstrap: Use new pogen location and execute it. contrib/openvpn-tap32: Move to contrib/3rdparty/Windows/openvpn-tap32. contrib/gnunet-logo*: Move to contrib/branding/logo/ Delete old patches in contrib, predating git. Move buildbot data to contrib/ci/buildbot, move docker data to contrib/ci/docker. Create contrib/conf and populate it with config files found in contrib and bin. Move gns related data to contrib/gns. delete contrib/repeat.sh Move contrib/log.php into contrib/web/log.php. Create folder contrib/scripts and use it for most scripts in contrib. Remove trailing whitespace in doc/Makefile.am Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'contrib/scripts/revisionary.sh')
-rwxr-xr-xcontrib/scripts/revisionary.sh98
1 files changed, 98 insertions, 0 deletions
diff --git a/contrib/scripts/revisionary.sh b/contrib/scripts/revisionary.sh
new file mode 100755
index 000000000..5778cf148
--- /dev/null
+++ b/contrib/scripts/revisionary.sh
@@ -0,0 +1,98 @@
1#!/usr/local/bin/bash
2
3STARTREVISION=14033
4ENDREVISION=15268
5CURRENTREVISION=$STARTREVISION
6HOME_DIR='/home/gnunet/FreeBSD7-AMD64-wachs/freebsd7-amd64-wachs/build'
7
8
9CMD_UPDATE="svn up --force --accept theirs-full -r"
10CMD_CLEANUP="killall -s 31 -r gnunet-*; make distclean;"
11CMD_PREPARATION="./bootstrap; ./configure --prefix=/tmp/gnb --with-extractor=/usr/local"
12CMD_BUILD="make all"
13CMD_TEST="cd src/transport ; make test_transport_api_tcp; ./test_transport_api_tcp"
14
15#LOGGING=""
16LOGGING=" 1> /dev/null 2> errors.txt"
17LOGFILE="log.txt"
18
19function output ()
20{
21 eval echo $1
22 eval echo $1 >> $LOGFILE
23}
24
25
26while [ $CURRENTREVISION -le $ENDREVISION ]; do
27 output 'Testing revision $CURRENTREVISION'
28# updating
29 output ' -> updating '
30 eval cd $HOME_DIR
31 CMD="$CMD_UPDATE $CURRENTREVISION $LOGGING"
32 eval $CMD
33 result=$?
34 if [ $result -eq 0 ]; then
35 output " updating OK"
36 else
37 output " updating FAILED"
38 (( CURRENTREVISION++ ))
39 continue
40 fi
41
42# clean up
43 output " -> cleanup "
44 CMD="$CMD_CLEANUP $LOGGING"
45 eval $CMD
46 result=$?
47 if [ $result -eq 0 ]; then
48 output " cleanup OK"
49 else
50 output " cleanup FAILED"
51 (( CURRENTREVISION++ ))
52 continue
53 fi
54# preparing
55 output " -> preparation "
56 CMD="$CMD_PREPARATION $LOGGING"
57 #echo $CMD
58 eval $CMD
59 result=$?
60 if [ $result -eq 0 ]; then
61 output " preparation OK"
62 else
63 output " preparation FAILED"
64 (( CURRENTREVISION++ ))
65 continue
66 fi
67# building
68 output " -> building "
69 CMD="$CMD_BUILD $LOGGING"
70 #echo $CMD
71 eval $CMD
72 result=$?
73 if [ $result -eq 0 ]; then
74 output " building OK"
75 else
76 output " building FAILED"
77 (( CURRENTREVISION++ ))
78 continue
79 fi
80# testing
81 output " -> testing "
82 CMD="$CMD_TEST $LOGGING"
83 #echo $CMD
84 eval $CMD
85 result=$?
86 testresult=result
87 if [ $result -eq 0 ]; then
88 output " testing OK"
89 else
90 output " testing FAILED"
91 output 'Revision $CURRENTREVISION FAILED'
92 fi
93 (( CURRENTREVISION++ ))
94done
95
96exit
97
98