From f76a682ecfa73ef394e2a45518df7852f32a476d Mon Sep 17 00:00:00 2001 From: tsv2013 Date: Wed, 10 Jul 2024 17:49:20 +0300 Subject: [PATCH] Update devops-pull-requests-parallel-jobs.yml for Azure Pipelines --- devops-pull-requests-parallel-jobs.yml | 93 +++++++++++++------------- 1 file changed, 46 insertions(+), 47 deletions(-) diff --git a/devops-pull-requests-parallel-jobs.yml b/devops-pull-requests-parallel-jobs.yml index 633ddb235d..112863438b 100644 --- a/devops-pull-requests-parallel-jobs.yml +++ b/devops-pull-requests-parallel-jobs.yml @@ -350,50 +350,49 @@ jobs: npm run testcafe:jquery-ui:ci displayName: "run functional tests" -- job: SurveyUI - steps: - - checkout: self - persistCredentials: true - clean: true - - - task: NodeTool@0 - inputs: - versionSpec: "14.x" - displayName: "Install Node.js" - - - task: CopyFiles@2 - inputs: - SourceFolder: "$(Build.SourcesDirectory)/" - Contents: "package.json" - TargetFolder: "$(Build.SourcesDirectory)/Temp/" - OverWrite: true - displayName: "Copy package.json for cache key" - - task: Cache@2 - inputs: - key: 'npm-cache-library | $(Build.SourcesDirectory)/Temp/package.json' - path: $(Build.SourcesDirectory)/node_modules - cacheHitVar: NPM_CACHE_RESTORED - displayName: Cache NPM - - - task: Npm@1 - displayName: 'NPM install' - inputs: - command: install - verbose: false - workingDir: $(Build.SourcesDirectory) - condition: ne(variables.NPM_CACHE_RESTORED, 'true') - - - script: | - npm run build_core - npm run build_i18n - npm run build-plugins - displayName: "Build Core" - - - script: | - npm run build_ui_prod - displayName: "Build jquery-ui" - - - script: | - npm run testcafe:survey-ui:ci - displayName: "run functional tests" - +# - job: SurveyUI +# steps: +# - checkout: self +# persistCredentials: true +# clean: true + +# - task: NodeTool@0 +# inputs: +# versionSpec: "14.x" +# displayName: "Install Node.js" + +# - task: CopyFiles@2 +# inputs: +# SourceFolder: "$(Build.SourcesDirectory)/" +# Contents: "package.json" +# TargetFolder: "$(Build.SourcesDirectory)/Temp/" +# OverWrite: true +# displayName: "Copy package.json for cache key" +# - task: Cache@2 +# inputs: +# key: 'npm-cache-library | $(Build.SourcesDirectory)/Temp/package.json' +# path: $(Build.SourcesDirectory)/node_modules +# cacheHitVar: NPM_CACHE_RESTORED +# displayName: Cache NPM + +# - task: Npm@1 +# displayName: 'NPM install' +# inputs: +# command: install +# verbose: false +# workingDir: $(Build.SourcesDirectory) +# condition: ne(variables.NPM_CACHE_RESTORED, 'true') + +# - script: | +# npm run build_core +# npm run build_i18n +# npm run build-plugins +# displayName: "Build Core" + +# - script: | +# npm run build_ui_prod +# displayName: "Build survey-ui" + +# - script: | +# npm run testcafe:survey-ui:ci +# displayName: "run functional tests"