Lottie-Windows/azure-pipelines.yml

79 строки
1.8 KiB
YAML

trigger:
- main
- dev/*
- rel/*
pr:
- main
- dev/*
- rel/*
pool:
vmImage: windows-2022
variables:
BuildConfiguration: Lottie-Windows
steps:
# Set up a VS build environment.
- task: BatchScript@1
displayName: Setup Environment Variables
inputs:
filename: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\Tools\\VsDevCmd.bat"
arguments: -no_logo
modifyEnvironment: true
# Install NuGet tools.
- task: NuGetToolInstaller@1
displayName: Use NuGet 6.5.0
inputs:
versionSpec: 6.5.0
# Install Nerbank.GitVersioning.
- task: DotNetCoreCLI@2
displayName: Install NBGV tool
inputs:
command: custom
custom: tool
arguments: install --tool-path . nbgv
# .NET Core SDK Installer.
- task: UseDotNet@2
inputs:
packageType: 'sdk' # Options: runtime, sdk
version: '7.0.x'
# Nerdbank.GitVersioning
- script: nbgv cloud
displayName: Set Version
# Install the Windows SDK. Version 18362 (Windows 1909 release).
# This is needed to build the UWP code.
- powershell: .\build\Install-WindowsSdkISO.ps1 18362
displayName: Insider SDK
# Run the build.
- powershell: .\build.ps1 --target=Package
displayName: Build
workingDirectory: .\build
# Sign the result of the build.
- task: PowerShell@2
displayName: Authenticode Sign Packages
inputs:
filePath: build/Sign-Package.ps1
env:
SignClientUser: $(SignClientUser)
SignClientSecret: $(SignClientSecret)
ArtifactDirectory: bin\nupkg
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))
# Publish the results of the build.
- task: PublishBuildArtifacts@1
displayName: Publish Package Artifacts
inputs:
pathToPublish: .\bin\nupkg
artifactType: container
artifactName: Packages