mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
121 lines
4.0 KiB
YAML
121 lines
4.0 KiB
YAML
jobs:
|
|
- job: Windows_build
|
|
displayName: Windows Build
|
|
dependsOn: GetReleaseVersion
|
|
timeoutInMinutes: 180
|
|
strategy:
|
|
maxParallel: 2
|
|
matrix:
|
|
x64:
|
|
BUILD_ARCH: x64
|
|
RunCoreMainTests: true
|
|
x86:
|
|
BUILD_ARCH: x86
|
|
RunCoreMainTests: true
|
|
|
|
pool:
|
|
vmImage: windows-2019
|
|
|
|
variables:
|
|
AppName: $[ dependencies.GetReleaseVersion.outputs['Version.AppName'] ]
|
|
ReleaseVersion: $[ dependencies.GetReleaseVersion.outputs['Version.ReleaseVersion'] ]
|
|
IsReleaseBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsReleaseBranch'] ]
|
|
IsSignedZipBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsSignedZipBranch'] ]
|
|
|
|
steps:
|
|
- template: templates/preparation.yml
|
|
|
|
- template: templates/cache.yml
|
|
parameters:
|
|
OS: windows
|
|
|
|
- template: templates/bootstrap.yml
|
|
|
|
- template: templates/build.yml
|
|
|
|
- template: templates/test.yml
|
|
|
|
|
|
- pwsh: |
|
|
if ($env:BUILD_ARCH -eq "x64") {
|
|
$env:FileID="-x64"
|
|
} else {
|
|
$env:FileID=""
|
|
}
|
|
echo "##vso[task.setvariable variable=FileID]$env:FileID" # Azure syntax
|
|
displayName: Set FileID based on the arch
|
|
|
|
- template: templates/publish.yml
|
|
parameters:
|
|
artifacts:
|
|
- fileName: atom$(FileID)-windows.zip
|
|
fileDir: $(Build.SourcesDirectory)/out
|
|
condition: and( succeeded(), or( eq(variables['BUILD_ARCH'], 'x64'), ne(variables['Build.Reason'], 'PullRequest') ) )
|
|
- fileName: AtomSetup$(FileID).exe
|
|
fileDir: $(Build.SourcesDirectory)/out
|
|
condition: and(succeeded(), eq(variables['IsReleaseBranch'], 'true'))
|
|
- fileName: $(AppName)$(FileID)-$(ReleaseVersion)-full.nupkg
|
|
fileDir: $(Build.SourcesDirectory)/out
|
|
condition: and(succeeded(), eq(variables['IsReleaseBranch'], 'true'))
|
|
- fileName: $(AppName)$(FileID)-$(ReleaseVersion)-delta.nupkg
|
|
fileDir: $(Build.SourcesDirectory)/out
|
|
condition: and(succeeded(), eq(variables['IsReleaseBranch'], 'true'))
|
|
continueOnError: true # Nightly builds don't produce delta packages yet, so don't fail the build
|
|
- fileName: RELEASES$(FileID)
|
|
fileDir: $(Build.SourcesDirectory)/out
|
|
condition: and(succeeded(), eq(variables['IsReleaseBranch'], 'true'))
|
|
|
|
- job: Windows_tests
|
|
displayName: Windows Tests
|
|
dependsOn: Windows_build
|
|
timeoutInMinutes: 180
|
|
strategy:
|
|
maxParallel: 2
|
|
matrix:
|
|
x64_Renderer_Test1:
|
|
RunCoreMainTests: false
|
|
RunCoreRendererTests: 1
|
|
BUILD_ARCH: x64
|
|
os: windows-2019
|
|
x64_Renderer_Test2:
|
|
RunCoreMainTests: false
|
|
RunCoreRendererTests: 2
|
|
BUILD_ARCH: x64
|
|
os: windows-2019
|
|
|
|
pool:
|
|
vmImage: $(os)
|
|
|
|
variables:
|
|
AppName: $[ dependencies.GetReleaseVersion.outputs['Version.AppName'] ]
|
|
ReleaseVersion: $[ dependencies.GetReleaseVersion.outputs['Version.ReleaseVersion'] ]
|
|
IsReleaseBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsReleaseBranch'] ]
|
|
IsSignedZipBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsSignedZipBranch'] ]
|
|
|
|
steps:
|
|
- template: templates/preparation.yml
|
|
|
|
- template: templates/cache.yml
|
|
parameters:
|
|
OS: windows
|
|
|
|
- template: templates/bootstrap.yml
|
|
|
|
# Downloading the build artifacts
|
|
- pwsh: |
|
|
if ($env:BUILD_ARCH -eq "x64") {
|
|
$env:FileID="-x64"
|
|
} else {
|
|
$env:FileID=""
|
|
}
|
|
echo "##vso[task.setvariable variable=FileID]$env:FileID" # Azure syntax
|
|
displayName: Set FileID based on the arch
|
|
|
|
- template: templates/download-unzip.yml
|
|
parameters:
|
|
artifacts:
|
|
- atom$(FileID)-windows.zip
|
|
|
|
# Core renderer tests
|
|
- template: templates/test.yml
|