From c06841c91016bc77e1c5eacd20366edb589d1530 Mon Sep 17 00:00:00 2001 From: Dmitry Kurmanov Date: Thu, 20 Jun 2024 17:34:25 +0400 Subject: [PATCH] Delete jquery-ui-vrt.yml --- jquery-ui-vrt.yml | 59 ----------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 jquery-ui-vrt.yml diff --git a/jquery-ui-vrt.yml b/jquery-ui-vrt.yml deleted file mode 100644 index 69431b6175..0000000000 --- a/jquery-ui-vrt.yml +++ /dev/null @@ -1,59 +0,0 @@ -# Node.js -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript - -#trigger only "by hand" -trigger: none -pr: none - -pool: - vmImage: 'windows-latest' - -jobs: -- job: JqueryUIPreact - 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 NPMs - - - task: Npm@1 - displayName: 'NPM install' - inputs: - command: install - verbose: false - 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_jquery_ui_prod - displayName: "Build jquery-ui_prod" - - - script: | - npm run vrt:jquery-ui:ci - displayName: "run vrt tests" \ No newline at end of file