StarSim

StarSim.git
git clone git://git.lenczewski.org/StarSim.git
Log | Files | Refs | README | LICENSE

commit da3fe9c448a0999de5f3d7f5aaf53f4e96ce183c
parent 506a0bbae85e9a13c09190908c317476c734f49e
Author: EnderRifter <33129490+EnderRifter@users.noreply.github.com>
Date:   Wed, 19 Jun 2019 18:45:55 +0100

Set up CI with Azure Pipelines

[skip ci]
Diffstat:
Aazure-pipelines.yml | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# ASP.NET Core +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +variables: + buildConfiguration: 'Release' + +steps: +- script: dotnet restore +- script: dotnet build --configuration $(buildConfiguration) + displayName: 'dotnet build $(buildConfiguration)' +- task: PublishBuildArtifacts@1