tests: add some runtime error in nitin.input
[nit.git] / contrib / oot.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 # Update out-of-tree projects from oot.txt
17 # Each one is cloned in the oot/ directory.
18
19
20 # Update the directory
21 update_oot() {
22 if test -d "$dir"; then
23 echo "$name: git pull"
24 ../misc/jenkins/unitrun.sh "cmd-$name-pull" git --work-tree="$PWD/$dir" --git-dir="$PWD/$dir/.git" pull -f
25 else
26 echo "$name: git clone"
27 ../misc/jenkins/unitrun.sh "cmd-$name-clone" git clone "$repo" "$dir"
28 fi
29 }
30
31 # Run trymake with arguments
32 trymake_oot() {
33 echo "$name: trymake $@"
34 ../misc/jenkins/trymake.sh "$name" "$dir" "$@"
35 }
36
37 cmd="$1"
38 shift
39
40 while read -r repo name; do
41 [[ "$repo" = "#"* ]] && continue
42 [[ "$name" = "" ]] && continue
43 dir="oot/$name"
44 case "$cmd" in
45 list) echo "$name";;
46 update) update_oot;;
47 trymake) trymake_oot "$@";;
48 pre-build) trymake_oot pre-build;;
49 all) update_oot; trymake_oot pre-build all check;;
50 ""|help) echo "usage: oot.sh command [arg...]"; exit 0;;
51 *) echo >&2 "unknown command: $cmd"; exit 1;;
52 esac
53 done < oot.txt