forked from castleproject-deprecated/Transactions
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sh
97 lines (80 loc) · 5.18 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
#!/bin/bash
# ****************************************************************************
# Copyright 2004-2024 Castle Project - https://www.castleproject.org/
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ****************************************************************************
shopt -s expand_aliases
DOTNETPATH=$(which dotnet)
if [ ! -f "$DOTNETPATH" ]; then
echo "Please install Microsoft .NET from: https://dotnet.microsoft.com/en-us/download"
exit 1
fi
DOCKERPATH=$(which docker)
if [ -f "$DOCKERPATH" ]; then
alias mono="$PWD/buildscripts/docker-run-mono.sh"
else
MONOPATH=$(which mono)
if [ ! -f "$MONOPATH" ]; then
echo "Please install either Docker or Xamarin/Mono from https://www.mono-project.com/docs/getting-started/install/"
exit 1
fi
fi
mono --version
# Linux/Darwin
OSNAME=$(uname -s)
echo "OSNAME: $OSNAME"
dotnet build "Castle.Transactions.sln" --configuration Release || exit 1
echo ------------------------------------
echo Running .NET (net9.0) Unit Tests
echo ------------------------------------
dotnet test "artifacts\bin\Release\net9.0\Castle.Services.Transaction.Tests\Castle.Services.Transaction.Tests.dll" --results-directory "artifacts\testresults\Release" --logger "nunit;LogFileName=Castle.Services.Transaction.Tests_net9.0_TestResults.xml;format=nunit3" || exit 1
dotnet test "artifacts\bin\Release\net9.0\Castle.Facilities.AutoTx.Tests\Castle.Facilities.AutoTx.Tests.dll" --results-directory "artifacts\testresults\Release" --logger "nunit;LogFileName=Castle.Facilities.AutoTx.Tests_net9.0_TestResults.xml;format=nunit3" || exit 1
echo ------------------------------------
echo Running .NET (net8.0) Unit Tests
echo ------------------------------------
dotnet test "artifacts\bin\Release\net8.0\Castle.Services.Transaction.Tests\Castle.Services.Transaction.Tests.dll" --results-directory "artifacts\testresults\Release" --logger "nunit;LogFileName=Castle.Services.Transaction.Tests_net8.0_TestResults.xml;format=nunit3" || exit 1
dotnet test "artifacts\bin\Release\net8.0\Castle.Facilities.AutoTx.Tests\Castle.Facilities.AutoTx.Tests.dll" --results-directory "artifacts\testresults\Release" --logger "nunit;LogFileName=Castle.Facilities.AutoTx.Tests_net8.0_TestResults.xml;format=nunit3" || exit 1
echo --------------------------------------------
echo Running .NET Framework (net48) Unit Tests
echo --------------------------------------------
mono "artifacts\bin\Release\net48\Castle.Services.Transaction.Tests\Castle.Services.Transaction.Tests.exe" --work "artifacts\testresults\Release" --result "Castle.Services.Transaction.Tests_net48_TestResults.xml;format=nunit3" || exit 1
mono "artifacts\bin\Release\net48\Castle.Facilities.AutoTx.Tests\Castle.Facilities.AutoTx.Tests.exe" --work "artifacts\testresults\Release" --result "Castle.Facilities.AutoTx.Tests_net48_TestResults.xml;format=nunit3" || exit 1
# Ensure that all unit test runs produced protocol files.
if [[ !( -f "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net9.0_TestResults.xml" &&
-f "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net9.0_TestResults.xml" &&
-f "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net8.0_TestResults.xml" &&
-f "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net8.0_TestResults.xml" &&
-f "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net48_TestResults.xml" &&
-f "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net48_TestResults.xml" ) ]]; then
echo "Incomplete test results. Some test runs might not have terminated properly. Failing the build."
exit 1
fi
# Unit Test Failures
NET_FAILCOUNT=$(grep -F "One or more child tests had errors." "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net9.0_TestResults.xml" "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net9.0_TestResults.xml" | wc -l)
if [ $NET_FAILCOUNT -ne 0 ]
then
echo ".NET (net9.0) Unit Tests have failed, failing the build."
exit 1
fi
NET_FAILCOUNT=$(grep -F "One or more child tests had errors." "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net8.0_TestResults.xml" "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net8.0_TestResults.xml" | wc -l)
if [ $NET_FAILCOUNT -ne 0 ]
then
echo ".NET (net8.0) Unit Tests have failed, failing the build."
exit 1
fi
NETFRAMEWORK_FAILCOUNT=$(grep -F "One or more child tests had errors." "artifacts\testresults\Release\Castle.Services.Transaction.Tests_net48_TestResults.xml" "artifacts\testresults\Release\Castle.Facilities.AutoTx.Tests_net48_TestResults.xml" | wc -l)
if [ $NETFRAMEWORK_FAILCOUNT -ne 0 ]
then
echo ".NET Framework (net48) Unit Tests have failed, failing the build."
exit 1
fi