forked from zauberzeug/quicktest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·53 lines (38 loc) · 1.38 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
#!/bin/bash
set -x
if [[ $(git status -s) ]]; then
echo "You have uncommitted files. Commit and push them before running this script."
exit 1
fi
git fetch --tags
# get latest git tag and increase by one (see https://stackoverflow.com/questions/4485399/how-can-i-bump-a-version-number-using-bash)
VERSION=`git describe --abbrev=0 | awk -F. '/[0-9]+\./{$NF+=1;OFS=".";print}'`
echo "setting version to $VERSION"
function setVersion_Nupkg {
sed -i '' "s/\(<version>\).*\(<\/version>\)/\1$VERSION\2/" $1
}
function packNuGet {
setVersion_Nupkg $1
nuget pack $1 || exit 1
}
function publishNuGet {
nuget push -Source https://www.nuget.org/api/v2/package $1 || exit 1
}
function createTag {
git tag -a $VERSION -m '' || exit 1
git push --tags || exit 1
}
nuget restore QuickTest.sln || exit 1
msbuild /p:Configuration=Release QuickTest/QuickTest.csproj || exit 1
msbuild /p:Configuration=Release Tests/Tests.csproj || exit 1
pushd Tests && nuget install Nunit.Runners && popd
export MONO_IOMAP=all # this fixes slash, backslash path separator problems within nunit test runner
NUNIT=(Tests/NUnit.ConsoleRunner.*/tools/nunit3-console.exe)
mono ${NUNIT[0]} --config=Release "Tests/Tests.csproj" || exit 1
createTag
packNuGet Xamarin.Forms.QuickTest.nuspec
if [[ $SKIP_DEPLOYMENT == True ]]; then
echo "Skipping deployment"
exit 0
fi
publishNuGet Xamarin.Forms.QuickTest.$VERSION.nupkg