Skip to content

Commit 8c18104

Browse files
committed
cleanup
1 parent 307ecd3 commit 8c18104

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/pack.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Task("Pack-Nuget")
6464

6565
settings.ArgumentCustomization = arg => arg.Append("/p:IsPackaging=true");
6666
DotNetCorePack("./src/GitVersion.MsBuild", settings);
67-
67+
6868
settings.ArgumentCustomization = null;
6969
DotNetCorePack("./src/GitVersionCore", settings);
7070
});
@@ -124,7 +124,7 @@ void PackPrepareNative(ICakeContext context, BuildParameters parameters)
124124
{
125125
var outputPath = PackPrepareNative(context, parameters, runtime);
126126

127-
// testing windows and macos artifacts, ther linux is tested with docker
127+
// testing windows and macos artifacts, the linux is tested with docker
128128
if (platform != PlatformFamily.Linux)
129129
{
130130
context.Information("Validating native lib:");

build/utils/parameters.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class BuildParameters
140140
NativeRuntimes = new Dictionary<PlatformFamily, string[]>
141141
{
142142
[PlatformFamily.Windows] = new[] { "win-x64", "win-x86" },
143-
[PlatformFamily.Linux] = new[] { "alpine.3.10-x64", "debian.9-x64", "centos.7-x64", "fedora.30-x64", "ubuntu.16.04-x64", "ubuntu.18.04-x64" },
143+
[PlatformFamily.Linux] = new[] { "alpine.3.12-x64", "centos.7-x64", "debian.9-x64", "debian.10-x64", "ubuntu.16.04-x64", "ubuntu.18.04-x64", "ubuntu.20.04-x64" },
144144
[PlatformFamily.OSX] = new[] { "osx-x64" },
145145
};
146146

0 commit comments

Comments
 (0)