summary refs log tree commit diff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorOren Novotny <oren@novotny.org>2018-09-15 14:27:06 -0400
committerGitHub <noreply@github.com>2018-09-15 14:27:06 -0400
commit32ea5c74fca12ebe660405ef6cb7e8bd38fc7a0c (patch)
treef8dea8b874235436fb2a4a2798b67cbcdea5c2ef /azure-pipelines.yml
parentconsolidate files (diff)
downloadBouncyCastle.NET-ed25519-32ea5c74fca12ebe660405ef6cb7e8bd38fc7a0c.tar.xz
Update and rename .azure-pipelines.yml to azure-pipelines.yml
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml56
1 files changed, 56 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 000000000..22df0c7b5
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,56 @@
+trigger:
+- netstandard
+- rel/*
+
+pool:
+  vmImage: vs2017-win2016
+
+variables: 
+  BuildConfiguration: Release
+
+steps:
+- task: DotNetCoreCLI@2  
+  inputs:
+    command: custom
+    custom: tool
+    arguments: install --tool-path . nbgv
+  displayName: Install NBGV tool
+  condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))
+
+- script: nbgv cloud
+  displayName: Set Version
+  condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))
+
+- task: DotNetCoreCLI@2
+  inputs:
+    command: pack
+    packagesToPack: .\crypto\src\crypto.csproj
+    packDirectory: $(Build.ArtifactStagingDirectory)\Packages
+    configuration: $(BuildConfiguration)
+    arguments: /p:PackageId="Portable.BouncyCastle" 
+  displayName: Build  
+  
+- task: DotNetCoreCLI@2
+  inputs:
+    command: test
+    projects: .\crypto\test\crypto.test.csproj
+    arguments: -c $(BuildConfiguration) --collect:"Code Coverage" -s $(System.DefaultWorkingDirectory)\CodeCoverage.runsettings /p:DebugType=portable
+  displayName: Run Tests
+  
+- task: PowerShell@2
+  displayName: Authenticode Sign artifacts
+  inputs:
+    filePath: scripts/Sign-Package.ps1
+  env:
+    SignClientUser: $(SignClientUser)
+    SignClientSecret: $(SignClientSecret)
+    ArtifactDirectory: $(Build.ArtifactStagingDirectory)\Packages
+  condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))
+
+- task: PublishBuildArtifacts@1
+  displayName: Publish Package Artifacts
+  inputs:
+    pathToPublish: $(Build.ArtifactStagingDirectory)\Packages
+    artifactType: container
+    artifactName: Packages
+  condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))