Merge: doc: fixed some typos and other misc. corrections
[nit.git] / misc / jenkins / nitester-wrapper.sh
1 #!/bin/bash
2 # This file is part of NIT ( http://www.nitlanguage.org ).
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # This script is a wrapper for `nitester` which also manages a local repo
17 #
18 # The first argument _must_ be the hash of the commit at the head of the
19 # branch to test. The other arguments are passed on to `nitester`.
20
21 hash=$1
22 shift
23
24 set -x
25
26 local_repo=nit/
27 tools_dir=misc/jenkins/
28
29 cd $local_repo
30 git clean -fdxq .
31 git fetch origin
32
33 if ! git checkout $hash; then
34 exit 1
35 fi
36
37 # Make basic bootstrap
38 $tools_dir/unitrun.sh "cmd-make-csrc" make -C c_src
39 $tools_dir/unitrun.sh "cmd-make-version" src/git-gen-version.sh
40 $tools_dir/unitrun.sh "cmd-make-nitc_0" c_src/nitc -o bin/nitc_0 src/nitc.nit
41 $tools_dir/unitrun.sh "cmd-make-nitc" bin/nitc_0 --dir bin/ src/nitc.nit
42 $tools_dir/unitrun.sh "cmd-make-nit-and-nitvm" bin/nitc --dir bin/ src/nit.nit src/nitvm.nit
43
44 # Make nitester
45 $tools_dir/unitrun.sh "cmd-make-nitester" make -C contrib/nitester/
46
47 # Run tests
48 cd tests
49 mkdir -p out
50 rm ~/jenkins_xml/*.xml
51 mpirun -np 30 ../contrib/nitester/bin/nitester $@