diff --git a/Extension/jobs/build.windows.yml b/Extension/jobs/build.windows.yml deleted file mode 100644 index f120c829ce..0000000000 --- a/Extension/jobs/build.windows.yml +++ /dev/null @@ -1,50 +0,0 @@ -parameters: - name: '' - pool: '' - -jobs: -- job: Windows - pool: - vmImage: 'vs2017-win2016' - - steps: - - task: NodeTool@0 - displayName: 'Use Node 10.16.x' - inputs: - versionSpec: 10.16.x - - - script: yarn install - displayName: "Install Dependencies" - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: yarn run generatePackageHashes - displayName: "Generate hashes for runtime dependency packages" - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: yarn run compile - displayName: "Compile Sources" - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: yarn run pr-check - displayName: 'Validate Extension/package.json' - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: yarn run lint - displayName: 'Run Linter' - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: yarn run pretest - displayName: "Compile Test Sources" - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: 'yarn run unitTests' - displayName: 'Run unit tests' - workingDirectory: '$(Build.SourcesDirectory)\Extension' - - - script: 'yarn run integrationTests' - displayName: 'Run languageServer integration tests' - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 - displayName: 'Component Detection' - continueOnError: true diff --git a/Extension/jobs/build.yml b/Extension/jobs/build.yml deleted file mode 100644 index ea923acb23..0000000000 --- a/Extension/jobs/build.yml +++ /dev/null @@ -1,59 +0,0 @@ -parameters: - name: '' - pool: '' - -jobs: -- job: ${{ parameters.name }} - pool: ${{ parameters.pool }} - - steps: - - task: NodeTool@0 - displayName: 'Use Node 10.16.x' - inputs: - versionSpec: 10.16.x - - - script: yarn install - displayName: "Install Dependencies" - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: yarn run generatePackageHashes - displayName: "Generate hashes for runtime dependency packages" - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: yarn run compile - displayName: "Compile Sources" - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: yarn run pr-check - displayName: 'Validate Extension/package.json' - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: yarn run lint - displayName: 'Run Linter' - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: | - set -e - /usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 & - disown -ar - displayName: 'Start xvfb' - - - script: yarn run pretest - displayName: "Compile Test Sources" - workingDirectory: '$(Build.SourcesDirectory)/Extension' - - - script: 'yarn run unitTests' - displayName: 'Run unit tests' - workingDirectory: '$(Build.SourcesDirectory)/Extension' - env: - DISPLAY: :10 - - - script: 'yarn run integrationTests' - displayName: 'Run languageServer integration tests' - workingDirectory: '$(Build.SourcesDirectory)/Extension' - env: - DISPLAY: :10 - - - task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 - displayName: 'Component Detection' - continueOnError: true diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index e454e51899..0000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: $(Date:yyyyMMdd).$(Rev:r) -pr: -- 'master' -jobs: -- template: Extension/jobs/build.yml - parameters: - name: macOS - pool: - vmImage: 'macOS-10.14' - -# Temporarility disable Linux tests -#- template: Extension/jobs/build.yml -# parameters: -# name: Linux -# pool: -# vmImage: 'ubuntu-16.04' - -- template: Extension/jobs/build.windows.yml \ No newline at end of file