Welcome to mirror list, hosted at ThFree Co, Russian Federation.

validate_revision.sh - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a29eeed7cd3b8dd12c56d3eac5d14647c5510c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash

rev="$1"

if [ "$rev" == "" ]; then
  cat << KONEC
./validate_revision.sh <revnumber>
  This will check, if the given revision was compilable (using irstlm).
  These tasks will be performed:
    svn update -r <revnumber>
    compile and install irstlm to a temp directory
    compile moses with irstlm
    delete the temp directory
KONEC
  exit 1;
fi

tempdir=/tmp/validatemoses

function die() {
  rm -rf $tempdir
  echo "$@"
  exit 1
}

if svn status | grep '^[^\?]'; then
  die "Will not go to a different revision, please synchronize with a revision in repository first"
fi

svn up -r $rev || die "Failed to update to rev. $rev"
# dump the information
svn info

./regenerate-makefiles.sh || die "Failed to regenerate makefiles in mosesdecoder"


cd irstlm || die "Failed to chdir to irstlm"
./regenerate-makefiles.sh || die "Failed to regenerate makefiles in irstlm"
./configure --prefix=$tempdir/irstlm || die "Failed to configure irstlm"
make clean || die "Failed to clean irstlm"
make || die "Failed to compile irstlm"
make install || die "Failed to install irstlm"
cd ..

./configure --with-irstlm=$tempdir/irstlm || die "Failed to configure moses"
make clean || die "Failed to clean moses"
make || die "Failed to compile moses"
  
rm -rf $tempdir || die "Failed to remove tempdir $tempdir"
echo "Moses successfully compiled"