/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
script/vsts/platforms/macos.yml
82 строки
2 KB
sadick254
Disable tests.
15 ноя 2022, 07:47
Не верифицирован
15 ноя 2022, 07:47
3f66da9
Код
Авторство
О чём код?
jobs: - job: macOS_build displayName: macOS Build dependsOn: GetReleaseVersion timeoutInMinutes: 180 variables: ReleaseVersion: $[ dependencies.GetReleaseVersion.outputs['Version.ReleaseVersion'] ] IsReleaseBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsReleaseBranch'] ] IsSignedZipBranch: $[ dependencies.GetReleaseVersion.outputs['Version.IsSignedZipBranch'] ] RunCoreMainTests: true pool: vmImage: macos-10.15 steps: - template: templates/preparation.yml - template: templates/cache.yml parameters: OS: macos - template: templates/bootstrap.yml - template: templates/build.yml # core main tests # - template: templates/test.yml - script: | cp $(Build.SourcesDirectory)/out/*.zip $(Build.ArtifactStagingDirectory) displayName: Stage Artifacts - template: templates/publish.yml parameters: artifacts: - fileName: atom-mac.zip fileDir: $(Build.ArtifactStagingDirectory) condition: succeeded() - fileName: atom-mac-symbols.zip fileDir: $(Build.ArtifactStagingDirectory) condition: succeeded() - fileName: atom-api.json 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 # steps: # - template: templates/preparation.yml # - 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/download-unzip.yml # parameters: # artifacts: # - atom-mac.zip # - atom-mac-symbols.zip # - template: templates/test.yml