137 lines
4.8 KiB
C#
137 lines
4.8 KiB
C#
using System.IO;
|
|
using JetBrains.Annotations;
|
|
using Nuke.Common;
|
|
using Nuke.Common.CI;
|
|
using Nuke.Common.CI.GitLab;
|
|
using Nuke.Common.Execution;
|
|
using Nuke.Common.Git;
|
|
using Nuke.Common.IO;
|
|
using Nuke.Common.ProjectModel;
|
|
using Nuke.Common.Tooling;
|
|
using Nuke.Common.Tools.Docker;
|
|
using Nuke.Common.Tools.DotNet;
|
|
using Nuke.Common.Tools.GitVersion;
|
|
using Nuke.Common.Utilities.Collections;
|
|
using static Nuke.Common.IO.FileSystemTasks;
|
|
using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
|
|
|
[CheckBuildProjectConfigurations]
|
|
[ShutdownDotNetAfterServerBuild]
|
|
class Build : NukeBuild
|
|
{
|
|
private const string NuGetSourceName = "GitLab";
|
|
public static int Main() => Execute<Build>(x => x.Compile);
|
|
|
|
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
|
|
readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;
|
|
|
|
[Solution] readonly Solution Solution;
|
|
[GitRepository] readonly GitRepository GitRepository;
|
|
[GitVersion(NoFetch = true, Framework = "net5.0")] readonly GitVersion GitVersion;
|
|
|
|
|
|
[CanBeNull] GitLab CI => GitLab.Instance;
|
|
|
|
AbsolutePath SourceDirectory => RootDirectory / "src";
|
|
AbsolutePath TestsDirectory => RootDirectory / "tests";
|
|
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
|
|
|
|
Target PrintEnv => _ => _
|
|
.Executes(() =>
|
|
{
|
|
if (CI == null)
|
|
{
|
|
Logger.Info("Running in local environment");
|
|
Logger.Info($"Git commit: {GitRepository.Commit}");
|
|
}
|
|
else
|
|
{
|
|
Logger.Info("Running in GitLab CI");
|
|
Logger.Info($"Git commit: {CI.CommitSha}");
|
|
Logger.Info($"Pipeline ID: {CI.PipelineId}");
|
|
}
|
|
});
|
|
|
|
Target Clean => _ => _
|
|
.Before(Restore)
|
|
.Executes(() =>
|
|
{
|
|
SourceDirectory.GlobDirectories("**/bin", "**/obj").ForEach(DeleteDirectory);
|
|
TestsDirectory.GlobDirectories("**/bin", "**/obj").ForEach(DeleteDirectory);
|
|
EnsureCleanDirectory(ArtifactsDirectory);
|
|
});
|
|
|
|
Target Restore => _ => _
|
|
.Executes(() =>
|
|
{
|
|
DotNetRestore(s => s
|
|
.SetProjectFile(Solution));
|
|
});
|
|
|
|
Target Compile => _ => _
|
|
.DependsOn(Restore, PrintEnv)
|
|
.Executes(() =>
|
|
{
|
|
DotNetBuild(s => s
|
|
.SetProjectFile(Solution)
|
|
.SetConfiguration(Configuration)
|
|
.SetAssemblyVersion(GitVersion.AssemblySemVer)
|
|
.SetFileVersion(GitVersion.AssemblySemFileVer)
|
|
.SetInformationalVersion(GitVersion.InformationalVersion)
|
|
.EnableNoRestore());
|
|
});
|
|
|
|
Target IntegrationTestImage => _ => _
|
|
.Executes(() => DockerTasks.DockerBuild(s => s
|
|
.SetFile(Path.Join("assets", "integration-tests.dockerfile"))
|
|
.SetTag("inetmock-root")
|
|
.SetPath(".")));
|
|
|
|
Target Test => _ => _
|
|
.DependsOn(Compile, IntegrationTestImage)
|
|
.Executes(() => DotNetTest(s => s
|
|
.SetProjectFile(Solution)
|
|
.SetConfiguration(Configuration)
|
|
.EnableNoRestore()
|
|
.EnableNoBuild()
|
|
.EnableProcessLogOutput()));
|
|
|
|
Target AddNugetSource => _ => _
|
|
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
|
.OnlyWhenStatic(() => CI != null)
|
|
.ProceedAfterFailure()
|
|
.Executes(() => DotNetNuGetAddSource(s => s
|
|
.SetName(NuGetSourceName)
|
|
//.SetSource($"https://gitlab.com/api/v4/projects/{CI.ProjectId}/packages/nuget/index.json")
|
|
.SetSource($"https://gitlab.com/api/v4/projects/24385200/packages/nuget/index.json")
|
|
.SetUsername("baez90")
|
|
.SetPassword("RcMwfaXgvBxSWt4ZMB6z")
|
|
.EnableStorePasswordInClearText()));
|
|
|
|
Target Pack => _ => _
|
|
.DependsOn(Test)
|
|
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
|
.Executes(() => SourceDirectory
|
|
.GlobFiles("**/*.csproj")
|
|
.ForEach(csproj => DotNetPack(s => s
|
|
.SetProject(csproj)
|
|
.SetConfiguration(Configuration)
|
|
.SetOutputDirectory(ArtifactsDirectory)
|
|
.SetVersion(GitVersion.FullSemVer)
|
|
.EnableIncludeSource()
|
|
.EnableIncludeSymbols()
|
|
.EnableNoRestore()
|
|
.EnableNoBuild()
|
|
.EnableProcessLogOutput()
|
|
)));
|
|
|
|
Target NuGetPush => _ => _
|
|
.DependsOn(Pack, AddNugetSource)
|
|
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
|
.Executes(() => ArtifactsDirectory
|
|
.GlobFiles("**/*.nupkg")
|
|
.ForEach(nupkg => DotNetNuGetPush(s => s
|
|
.SetSource(NuGetSourceName)
|
|
.SetTargetPath(nupkg)
|
|
.EnableProcessLogOutput())));
|
|
}
|