-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·82 lines (70 loc) · 1.51 KB
/
test.sh
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash -eu
{ set +x; } 2>/dev/null
SOURCE="${BASH_SOURCE[0]}"
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
OS="Mac"
if [[ -e "/c/" ]]; then
OS="Windows"
fi
CONFIGURATION=Release
PUBLIC=""
BUILD=0
UPM=0
UNITYVERSION=2019.2
CI=0
while (( "$#" )); do
case "$1" in
-d|--debug)
CONFIGURATION="Debug"
;;
-r|--release)
CONFIGURATION="Release"
;;
-p|--public)
PUBLIC="-p:PublicRelease=true"
;;
-b|--build)
BUILD=1
;;
-u|--upm)
UPM=1
;;
-c)
shift
CONFIGURATION=$1
;;
--ispublic)
;;
--ci)
CI=1
;;
--trace)
{ set -x; } 2>/dev/null
;;
-*|--*=) # unsupported flags
echo "Error: Unsupported flag $1" >&2
exit 1
;;
esac
shift
done
if [[ x"${APPVEYOR:-}" != x"" ]]; then
CI=1
fi
if [[ x"${GITHUB_REPOSITORY:-}" != x"" ]]; then
CI=1
fi
pushd $DIR >/dev/null 2>&1
if [[ x"$BUILD" == x"1" ]]; then
if [[ x"${CI}" == x"0" ]]; then
dotnet restore
fi
dotnet build --no-restore -c $CONFIGURATION $PUBLIC
fi
dotnet test --no-build --no-restore -c $CONFIGURATION $PUBLIC
#dotnet test --no-build --no-restore -c $CONFIGURATION $PUBLIC --logger "trx;LogFileName=dotnet-test-result.trx"
#dotnet test --no-build --no-restore -c $CONFIGURATION $PUBLIC --logger "trx;LogFileName=dotnet-test-result.trx" --logger "html;LogFileName=dotnet-test-result.html"
if [[ x"$UPM" == x"1" ]]; then
powershell scripts/Test-Upm.ps1 -UnityVersion $UNITYVERSION
fi
popd >/dev/null 2>&1