-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.sh
executable file
·117 lines (104 loc) · 3.19 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
#!/bin/bash
for i in "$@"
do
case ${i} in
-v=*|--version=*)
BUILDVERSION="${i#*=}"
shift # past argument=value
;;
-c=*|--configuration=*)
CONFIGURATION="${i#*=}"
shift # past argument=value
;;
-o=*|--outputFolder=*)
OUTPUTFOLDER="${i#*=}"
shift # past argument=value
;;
--pack)
PACK="YES"
shift # past argument with no value
;;
*)
;;
--publish)
PUBLISH="YES"
shift # past argument with no value
;;
*)
# unknown option
;;
esac
done
echo "BUILD VERSION = ${BUILDVERSION}"
echo "CONFIGURATION = ${CONFIGURATION}"
echo "OUTPUT FOLDER = ${OUTPUTFOLDER}"
echo "PACK = ${PACK}"
echo "PUBLISH = ${PUBLISH}"
if [ -z ${CONFIGURATION+x} ]
then
echo "No configuration is specified, defaulting to Debug"
CONFIGURATION=Debug
fi
if [ -z ${BUILDVERSION+x} ]
then
echo "No build version is specified, defaulting to 0.0.0"
BUILDVERSION=0.0.0
fi
scriptsDir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
artifactsDir=${scriptsDir%%/}/artifacts
if [ -z ${OUTPUTFOLDER+x} ]
then
echo "No output folder is specified, defaulting to $artifactsDir"
OUTPUTFOLDER=${artifactsDir}
fi
outputDir=${OUTPUTFOLDER%%/}/apps
packagesOutputDir=${OUTPUTFOLDER%%/}/packages
testProjectRootDirectories=(${scriptsDir%%/}/tests/*/)
projectRootDirectories=(${scriptsDir%%/}/src/*/ ${scriptsDir%%/}/samples/*/ ${scriptsDir%%/}/tests/*/)
# clean OUTPUTFOLDER
if [ -d "$OUTPUTFOLDER" ]; then
rm -rf "$OUTPUTFOLDER"
fi
# restore
for projectDirectory in "${projectRootDirectories[@]}"
do
# restore
echo "starting to restore for $projectDirectory"
dotnet restore ${projectDirectory} || exit 1
done
# build, publish
for projectDirectory in "${projectRootDirectories[@]}"
do
projectPath="${projectDirectory%%/}/$(basename $projectDirectory).csproj"
# build
echo "starting to build $projectPath"
dotnet build ${projectPath} --configuration ${CONFIGURATION} || exit 1
# publish
echo "checking if $projectFilePath is publishable"
if cat ${projectPath} | grep 'PreserveCompilationContext' &>/dev/null
then
if [ -z ${PUBLISH+x} ]
then
echo "$projectDirectory is publishable but publish is disabled"
else
echo "starting to publish for $projectDirectory"
dotnet publish ${projectDirectory} --configuration ${CONFIGURATION} --output ${outputDir} --runtime active --no-build || exit 1
fi
else
echo "$projectFilePath is not publishable. Looking to see if it should be packed"
if [ -z ${PACK+x} ]
then
echo "Pack is disabled. Skipping pack on $projectDirectory"
else
echo "starting to pack for $projectDirectory"
dotnet pack ${projectDirectory} --configuration ${CONFIGURATION} --output ${packagesOutputDir} --no-build || exit 1
fi
fi
done
for projectDirectory in "${testProjectRootDirectories[@]}"
do
projectFilePath="${projectDirectory%%/}/$(basename $projectDirectory).csproj"
# test
echo "starting to test $projectFilePath for configuration $CONFIGURATION"
dotnet test ${projectFilePath} --configuration ${CONFIGURATION} --no-build || exit 1
done