This repository was archived by the owner on May 23, 2023. It is now read-only.
File tree 5 files changed +11
-28
lines changed
5 files changed +11
-28
lines changed Original file line number Diff line number Diff line change 15
15
clean : false # whether to fetch clean each time
16
16
submodules : recursive # set to 'true' for a single level of submodules or 'recursive' to get submodules of submodules
17
17
persistCredentials : true
18
+ - task : UseDotNet@2
19
+ displayName : ' Use .NET Core Runtime 3.1.10'
20
+ inputs :
21
+ version : ' 3.1.x'
18
22
# Linux or macOS
19
23
- task : Bash@3
20
24
displayName : Linux / OSX Build
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ Target "RunTests" (fun _ ->
121
121
info.WorkingDirectory <- ( Directory.GetParent project) .FullName
122
122
info.Arguments <- arguments) ( TimeSpan.FromMinutes 30.0 )
123
123
124
- ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.DontFailBuild result
124
+ ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.Error result
125
125
126
126
projects |> Seq.iter ( log)
127
127
projects |> Seq.iter ( runSingleProject)
@@ -145,7 +145,7 @@ Target "NBench" <| fun _ ->
145
145
info.WorkingDirectory <- ( Directory.GetParent project) .FullName
146
146
info.Arguments <- arguments) ( TimeSpan.FromMinutes 30.0 )
147
147
148
- ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.DontFailBuild result
148
+ ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.Error result
149
149
150
150
projects |> Seq.iter runSingleProject
151
151
Original file line number Diff line number Diff line change 30
30
)
31
31
32
32
$FakeVersion = " 4.61.2"
33
- $DotNetChannel = " LTS" ;
34
- $DotNetVersion = " 2.1.500" ;
35
- $DotNetInstallerUri = " https://raw.githubusercontent.com/dotnet/cli/v$DotNetVersion /scripts/obtain/dotnet-install.ps1" ;
36
33
$NugetVersion = " 4.1.0" ;
37
34
$NugetUrl = " https://dist.nuget.org/win-x86-commandline/v$NugetVersion /nuget.exe"
38
35
$ProtobufVersion = " 3.4.0"
Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ NUGET_EXE=$TOOLS_DIR/nuget.exe
11
11
NUGET_URL=https://dist.nuget.org/win-x86-commandline/v4.0.0/nuget.exe
12
12
FAKE_VERSION=4.61.2
13
13
FAKE_EXE=$TOOLS_DIR /FAKE/tools/FAKE.exe
14
- DOTNET_VERSION=2.1.500
15
- DOTNET_INSTALLER_URL=https://raw.githubusercontent.com/dotnet/cli/v$DOTNET_VERSION /scripts/obtain/dotnet-install.sh
16
- DOTNET_CHANNEL=LTS;
17
14
DOCFX_VERSION=2.40.5
18
15
DOCFX_EXE=$TOOLS_DIR /docfx.console/tools/docfx.exe
19
16
@@ -42,22 +39,6 @@ if [ ! -d "$TOOLS_DIR" ]; then
42
39
mkdir " $TOOLS_DIR "
43
40
fi
44
41
45
- # ##########################################################################
46
- # INSTALL .NET CORE CLI
47
- # ##########################################################################
48
-
49
- echo " Installing .NET CLI..."
50
- if [ ! -d " $SCRIPT_DIR /.dotnet" ]; then
51
- mkdir " $SCRIPT_DIR /.dotnet"
52
- fi
53
- curl -Lsfo " $SCRIPT_DIR /.dotnet/dotnet-install.sh" $DOTNET_INSTALLER_URL
54
- bash " $SCRIPT_DIR /.dotnet/dotnet-install.sh" --version $DOTNET_VERSION --channel $DOTNET_CHANNEL --install-dir .dotnet --no-path
55
- export PATH=" $SCRIPT_DIR /.dotnet" :$PATH
56
- export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
57
- export DOTNET_CLI_TELEMETRY_OPTOUT=1
58
- chmod -R 0755 " .dotnet"
59
- " $SCRIPT_DIR /.dotnet/dotnet" --info
60
-
61
42
62
43
# ##########################################################################
63
44
# INSTALL NUGET
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<Copyright >Copyright © 2015-2020 Petabridge®</Copyright >
4
4
<Authors >Petabridge</Authors >
5
- <VersionPrefix >0.4.0</VersionPrefix >
6
- <PackageReleaseNotes >Upgraded to [Akka.NET v1.4.1](https://getakka.net/community/whats-new/akkadotnet-v1.4.html)</PackageReleaseNotes >
5
+ <VersionPrefix >0.5.0</VersionPrefix >
6
+ <PackageReleaseNotes >Upgraded to [Akka.NET v1.4.14](https://github.com/akkadotnet/akka.net/releases/tag/1.4.14)
7
+ [Print seed nodes when bootstrapping from environment variables as array](https://github.com/petabridge/akkadotnet-bootstrap/issues/104)</PackageReleaseNotes >
7
8
<PackageIconUrl >https://petabridge.com/images/logo.png</PackageIconUrl >
8
9
<PackageProjectUrl >https://github.com/petabridge/akkadotnet-bootstrap</PackageProjectUrl >
9
10
<PackageLicenseUrl >https://github.com/petabridge/akkadotnet-bootstrap/blob/master/LICENSE</PackageLicenseUrl >
21
22
<PropertyGroup >
22
23
<XunitVersion >2.4.1</XunitVersion >
23
24
<TestSdkVersion >16.9.4</TestSdkVersion >
24
- <NetCoreTestVersion >netcoreapp2 .1</NetCoreTestVersion >
25
+ <NetCoreTestVersion >netcoreapp3 .1</NetCoreTestVersion >
25
26
<NetStandardVersion >netstandard2.0</NetStandardVersion >
26
27
<NetFrameworkTestVersion >net461</NetFrameworkTestVersion >
27
28
<AkkaVersion >1.4.18</AkkaVersion >
28
29
<SourceLinkVersion >1.0.0</SourceLinkVersion >
29
30
</PropertyGroup >
30
- </Project >
31
+ </Project >
You can’t perform that action at this time.
0 commit comments