forked from googleapis/google-cloud-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·161 lines (143 loc) · 4.06 KB
/
build.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/bin/bash
set -e
cd $(dirname $0)
source toolversions.sh
# Disable automatic test reporting to AppVeyor.
# See https://github.com/googleapis/google-cloud-dotnet/issues/1232
unset APPVEYOR_API_URL
# Make it easier to handle globbing that doesn't
# match anything, e.g. when looking for tests.
shopt -s nullglob
# Command line arguments are the APIs to build. Each argument
# should be the name of a directory, either relative to the location
# of this script, or under apis.
# Additional arguments:
# --notests: Just build, don't run the tests
# --diff: Detect which APIs to build based on a diff to the master branch
# --regex regex: Only build APIs that match the given regex
# --nobuild: Just list which APIs would be built; don't run the build
# --coverage: Run tests with coverage enabled
apis=()
runtests=true
runcoverage=false
apiregex=
nobuild=false
while (( "$#" )); do
if [[ "$1" == "--notests" ]]
then
runtests=false
elif [[ "$1" == "--diff" ]]
then
apis+=($(git diff master --name-only | grep -e 'apis/.*/' | cut -d/ -f 2 | uniq))
elif [[ "$1" == "--regex" ]]
then
shift
apiregex=$1
elif [[ "$1" == "--nobuild" ]]
then
nobuild=true
elif [[ "$1" == "--coverage" ]]
then
runcoverage=true
install_dotcover
mkdir -p coverage
else
apis+=($1)
fi
shift
done
# Build and test the tools, but only on Windows
[[ "$OS" == "Windows_NT" ]] && tools="tools" || tools=""
# If no APIs were specified explicitly, build all of them (and tools on Windows)
if [[ ${#apis[@]} -eq 0 ]]
then
apis=(${tools} $(find apis -mindepth 1 -maxdepth 1 -type d | sed 's/apis\///g'))
fi
# If we were given an API filter regex, apply it now.
if [[ "$apiregex" != "" ]]
then
filteredapis=()
# This is a hack to allow ! to negate the regex.
# Bash regular expressions don't allow for lookahead, so this is the
# simplest way of doing it.
if [[ $apiregex == !* ]]
then
apiregex=$(echo $apiregex | sed s/^!//g)
for api in ${apis[*]}
do
if [[ ! "$api" =~ $apiregex ]]
then
filteredapis+=($api)
fi
done
else
for api in ${apis[*]}
do
if [[ "$api" =~ $apiregex ]]
then
filteredapis+=($api)
fi
done
fi
unset apis
apis=("${filteredapis[@]}")
if [[ ${#apis[@]} -eq 0 ]]
then
echo "After regular expression filter, no projects left to build. Exiting."
exit 0
fi
fi
if [[ "$nobuild" == "true" ]]
then
echo "APIs that would be built:"
for api in ${apis[*]}
do
echo "$api"
done
exit 0
fi
# First build the analyzers, for use in everything else.
log_build_action "(Start) build.sh"
log_build_action "Building analyzers"
dotnet publish -nologo -clp:NoSummary -v quiet -c Release -f netstandard1.3 tools/Google.Cloud.Tools.Analyzers
# Then build the requested APIs, working out the test projects as we go.
> AllTests.txt
for api in ${apis[*]}
do
[[ -d "$api" ]] && apidir=$api || apidir=apis/$api
# Only build ASP.NET support on Windows
if [[ "$OS" != "Windows_NT" ]] && [[ "$apidir" == "apis/Google.Cloud.Diagnostics.AspNet" ]]
then
continue
fi
log_build_action "Building $apidir"
dotnet build -nologo -clp:NoSummary -v quiet -c Release $apidir
# On Linux, we don't have desktop .NET, so any projects which only
# support desktop .NET are going to be broken. Just don't add them.
for testproject in $apidir/*.Tests/*.csproj
do
if [[ "$OS" == "Windows_NT" ]] || ! grep -q -E '>net[0-9]+<' $testproject
then
echo "$testproject" >> AllTests.txt
fi
done
done
if [[ "$runtests" = true ]]
then
log_build_action "(Start) Unit tests"
# Could use xargs, but this is more flexible
while read testproject
do
testdir=$(dirname $testproject)
log_build_action "Testing $testdir"
if [[ "$runcoverage" = true && -f "$testdir/coverage.xml" ]]
then
echo "(Running with coverage)"
(cd "$testdir"; $DOTCOVER cover "coverage.xml" -ReturnTargetExitCode)
else
dotnet test -nologo -c Release --no-build $testproject
fi
done < AllTests.txt
log_build_action "(End) Unit tests"
fi
log_build_action "(End) build.sh"