зеркало из https://github.com/microsoft/DirectXTK.git
222 строки
5.7 KiB
YAML
222 строки
5.7 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
#
|
|
# https://go.microsoft.com/fwlink/?LinkId=248929
|
|
|
|
# Builds the library and test suite using the Microsoft GDK.
|
|
|
|
# NOTE: We use x64 MSBuild for the GDK as the NuGets don't include 32-bit support to avoid cross-arch dependencies.
|
|
|
|
schedules:
|
|
- cron: "30 5 * * *"
|
|
displayName: 'Nightly build'
|
|
branches:
|
|
include:
|
|
- main
|
|
|
|
trigger:
|
|
branches:
|
|
include:
|
|
- main
|
|
paths:
|
|
exclude:
|
|
- '*.md'
|
|
- LICENSE
|
|
- CMake*
|
|
- '.github/*'
|
|
- '.nuget/*'
|
|
- build/*.cmake
|
|
- build/*.cmd
|
|
- build/*.in
|
|
- build/*.json
|
|
- build/*.ps1
|
|
|
|
pr:
|
|
branches:
|
|
include:
|
|
- main
|
|
paths:
|
|
exclude:
|
|
- '*.md'
|
|
- LICENSE
|
|
- CMake*
|
|
- '.github/*'
|
|
- '.nuget/*'
|
|
- build/*.cmake
|
|
- build/*.cmd
|
|
- build/*.in
|
|
- build/*.json
|
|
- build/*.ps1
|
|
drafts: false
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: self
|
|
type: git
|
|
ref: refs/heads/main
|
|
- repository: testRepo
|
|
name: walbourn/directxtktest
|
|
type: github
|
|
endpoint: microsoft
|
|
ref: refs/heads/main
|
|
|
|
name: $(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r)
|
|
|
|
pool:
|
|
vmImage: windows-2019
|
|
|
|
variables:
|
|
Codeql.Enabled: false
|
|
EXTRACTED_FOLDER: $(ExtractedFolder)
|
|
GDK_EDITION: $(GDKEditionNumber)
|
|
GDKEnableBWOI: true
|
|
URL_FEED: $(ADOFeedURL)
|
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
|
|
|
jobs:
|
|
- job: BUILD_GDK
|
|
displayName: 'Microsoft Game Development Kit (GDK)'
|
|
timeoutInMinutes: 120
|
|
cancelTimeoutInMinutes: 1
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
- task: NuGetToolInstaller@1
|
|
displayName: 'Use NuGet'
|
|
- task: PowerShell@2
|
|
displayName: 'Create nuget.config with single source'
|
|
inputs:
|
|
targetType: inline
|
|
script: |
|
|
$xml = @'
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
</packageSources>
|
|
</configuration>
|
|
'@
|
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
|
|
|
- task: NuGetCommand@2
|
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
|
displayName: 'NuGet set package source to ADO feed'
|
|
inputs:
|
|
command: custom
|
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
|
- task: nuget-security-analysis@0
|
|
displayName: 'Secure Supply Chain Analysis'
|
|
- task: NuGetAuthenticate@1
|
|
displayName: 'NuGet Auth'
|
|
- task: NuGetCommand@2
|
|
displayName: NuGet install PGDK
|
|
inputs:
|
|
command: custom
|
|
arguments: install -prerelease Microsoft.GDK.PC.$(GDK_EDITION) -ExcludeVersion -OutputDirectory $(EXTRACTED_FOLDER)
|
|
- task: CopyFiles@2
|
|
displayName: Set up Directory.Build.props
|
|
inputs:
|
|
SourceFolder: build
|
|
Contents: 'Directory.Build.props'
|
|
TargetFolder: $(Build.SourcesDirectory)
|
|
- task: MSBuild@1
|
|
displayName: Setup BWOI VCTargets
|
|
inputs:
|
|
solution: build/SetupBWOI.targets
|
|
msbuildVersion: 16.0
|
|
msbuildArchitecture: x64
|
|
- task: VSBuild@1
|
|
displayName: Build solution DirectXTK_GDK_2019 pcdbg
|
|
inputs:
|
|
solution: DirectXTK_GDK_2019.sln
|
|
vsVersion: 16.0
|
|
platform: Gaming.Desktop.x64
|
|
configuration: Debug
|
|
msbuildArchitecture: x64
|
|
- task: VSBuild@1
|
|
displayName: Build solution DirectXTK_GDK_2019 pcrel
|
|
inputs:
|
|
solution: DirectXTK_GDK_2019.sln
|
|
vsVersion: 16.0
|
|
platform: Gaming.Desktop.x64
|
|
configuration: Release
|
|
msbuildArchitecture: x64
|
|
|
|
- job: BUILD_TESTS_GDK
|
|
displayName: 'Test Suite for Microsoft Game Development Kit (GDK)'
|
|
timeoutInMinutes: 120
|
|
cancelTimeoutInMinutes: 1
|
|
steps:
|
|
- checkout: self
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's'
|
|
- checkout: testRepo
|
|
displayName: Fetch Tests
|
|
clean: true
|
|
fetchTags: false
|
|
fetchDepth: 1
|
|
path: 's/Tests'
|
|
- task: NuGetToolInstaller@1
|
|
displayName: 'Use NuGet'
|
|
- task: PowerShell@2
|
|
displayName: 'Create nuget.config with single source'
|
|
inputs:
|
|
targetType: inline
|
|
script: |
|
|
$xml = @'
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
</packageSources>
|
|
</configuration>
|
|
'@
|
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
|
|
|
- task: NuGetCommand@2
|
|
displayName: 'NuGet set package source to ADO feed'
|
|
inputs:
|
|
command: custom
|
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
|
- task: nuget-security-analysis@0
|
|
displayName: 'Secure Supply Chain Analysis'
|
|
- task: NuGetAuthenticate@1
|
|
displayName: 'NuGet Auth'
|
|
- task: NuGetCommand@2
|
|
displayName: NuGet install PGDK
|
|
inputs:
|
|
command: custom
|
|
arguments: install -prerelease Microsoft.GDK.PC.$(GDK_EDITION) -ExcludeVersion -OutputDirectory $(EXTRACTED_FOLDER)
|
|
- task: CopyFiles@2
|
|
displayName: Set up Directory.Build.props
|
|
inputs:
|
|
SourceFolder: build
|
|
Contents: 'Directory.Build.props'
|
|
TargetFolder: $(Build.SourcesDirectory)
|
|
- task: MSBuild@1
|
|
displayName: Setup BWOI VCTargets
|
|
inputs:
|
|
solution: build/SetupBWOI.targets
|
|
msbuildVersion: 16.0
|
|
msbuildArchitecture: x64
|
|
- task: VSBuild@1
|
|
displayName: Build Tests pcdbg
|
|
inputs:
|
|
solution: '**\*GDK_2019*.sln'
|
|
vsVersion: 16.0
|
|
platform: Gaming.Desktop.x64
|
|
configuration: Debug
|
|
msbuildArchitecture: x64
|
|
- task: VSBuild@1
|
|
displayName: Build Tests pcrel
|
|
inputs:
|
|
solution: '**\*GDK_2019*.sln'
|
|
vsVersion: 16.0
|
|
platform: Gaming.Desktop.x64
|
|
configuration: Release
|
|
msbuildArchitecture: x64
|