Merge: doc: fixed some typos and other misc. corrections
[nit.git] / misc / jenkins / trymake.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 # Try to make targets (like pre-build). If the rule does on exists this does nothing instead of failing.
17 # This also generate xml JUnit files
18 #
19 # Usage
20 #
21 # trymake.sh name directory [targets]..
22 #
23 # Example
24 #
25 # trymake.sh foo contrib/foo check android
26
27 shdir="`dirname "$BASH_SOURCE"`"
28
29 name="$1"
30 dir="$2"
31 shift
32 shift
33 failed=
34 # Check each rules, if they exists
35 for rule in "$@"; do
36 make -C "$dir" $rule -n >/dev/null 2>/dev/null || {
37 # Special case for `all` that falls back as the default target
38 if [ "$rule" = "all" ]; then
39 echo "*** make -C $dir ***"
40 $shdir/unitrun.sh "cmd-$name-make" make -C "$dir" ||
41 failed="$failed $name"
42 fi
43 continue
44 }
45 echo "*** make $rule -C $dir ***"
46 $shdir/unitrun.sh "cmd-$name-make$rule" make -C "$dir" $rule ||
47 failed="$failed $name-$rule"
48 done
49 if test -n "$failed"; then
50 echo "FAILED: $failed"
51 exit 1
52 fi
53 exit 0