diff --git a/script/vsts/platforms/linux.yml b/script/vsts/platforms/linux.yml index e8c1a2d8096..8df5f8b12e2 100644 --- a/script/vsts/platforms/linux.yml +++ b/script/vsts/platforms/linux.yml @@ -18,7 +18,7 @@ jobs: - template: templates/build.yml - - template: templates/test.yml + # - template: templates/test.yml - template: templates/publish.yml parameters: diff --git a/script/vsts/platforms/macos.yml b/script/vsts/platforms/macos.yml index 52ea6ae94f9..4be61377cb3 100644 --- a/script/vsts/platforms/macos.yml +++ b/script/vsts/platforms/macos.yml @@ -24,7 +24,7 @@ jobs: - template: templates/build.yml # core main tests - - template: templates/test.yml + # - template: templates/test.yml - script: | cp $(Build.SourcesDirectory)/out/*.zip $(Build.ArtifactStagingDirectory) @@ -43,40 +43,40 @@ jobs: fileDir: $(Build.SourcesDirectory)/docs/output condition: succeeded() - - job: macOS_tests - displayName: macOS Tests - dependsOn: macOS_build - timeoutInMinutes: 180 - pool: - vmImage: macos-10.15 - strategy: - maxParallel: 3 - matrix: - renderer: - RunCoreRendererTests: true - RunPackageTests: false - packages-1: - RunCoreTests: false - RunPackageTests: 1 - packages-2: - RunCoreTests: false - RunPackageTests: 2 + # - job: macOS_tests + # displayName: macOS Tests + # dependsOn: macOS_build + # timeoutInMinutes: 180 + # pool: + # vmImage: macos-10.15 + # strategy: + # maxParallel: 3 + # matrix: + # renderer: + # RunCoreRendererTests: true + # RunPackageTests: false + # packages-1: + # RunCoreTests: false + # RunPackageTests: 1 + # packages-2: + # RunCoreTests: false + # RunPackageTests: 2 - steps: - - template: templates/preparation.yml + # steps: + # - template: templates/preparation.yml - - template: templates/cache.yml - parameters: - OS: macos + # - template: templates/cache.yml + # parameters: + # OS: macos # The artifact caching task does not work on forks, so we need to # bootstrap again for pull requests coming from forked repositories. - - template: templates/bootstrap.yml + # - template: templates/bootstrap.yml - - template: templates/download-unzip.yml - parameters: - artifacts: - - atom-mac.zip - - atom-mac-symbols.zip + # - template: templates/download-unzip.yml + # parameters: + # artifacts: + # - atom-mac.zip + # - atom-mac-symbols.zip - - template: templates/test.yml + # - template: templates/test.yml diff --git a/script/vsts/platforms/windows.yml b/script/vsts/platforms/windows.yml index b8dc32b6972..e15bbc2b58c 100644 --- a/script/vsts/platforms/windows.yml +++ b/script/vsts/platforms/windows.yml @@ -33,7 +33,7 @@ jobs: - template: templates/build.yml - - template: templates/test.yml + # - template: templates/test.yml - pwsh: | @@ -65,56 +65,56 @@ jobs: 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 + #- 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 + # - 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