mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Merge from vscode e388c734f30757875976c7e326d6cfeee77710de * fix yarn lcoks * remove small issue
56 lines
2.0 KiB
YAML
56 lines
2.0 KiB
YAML
steps:
|
|
- script: |
|
|
set -e
|
|
sudo apt-get update
|
|
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0
|
|
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
|
|
sudo chmod +x /etc/init.d/xvfb
|
|
sudo update-rc.d xvfb defaults
|
|
sudo service xvfb start
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: "10.15.1"
|
|
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
|
|
inputs:
|
|
versionSpec: "1.10.1"
|
|
# - task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
|
|
# inputs:
|
|
# keyfile: '**/yarn.lock, !**/node_modules/**/yarn.lock, !**/.*/**/yarn.lock'
|
|
# targetfolder: '**/node_modules, !**/node_modules/**/node_modules'
|
|
# vstsFeed: '$(ArtifactFeed)'
|
|
# condition: eq(variables['System.PullRequest.PullRequestId'], '')
|
|
- script: |
|
|
yarn
|
|
displayName: Install Dependencies
|
|
# condition: or(ne(variables['System.PullRequest.PullRequestId'], ''), ne(variables['CacheRestored'], 'true'))
|
|
# - task: 1ESLighthouseEng.PipelineArtifactCaching.SaveCacheV1.SaveCache@1
|
|
# inputs:
|
|
# keyfile: '**/yarn.lock, !**/node_modules/**/yarn.lock, !**/.*/**/yarn.lock'
|
|
# targetfolder: '**/node_modules, !**/node_modules/**/node_modules'
|
|
# vstsFeed: '$(ArtifactFeed)'
|
|
# condition: and(succeeded(), eq(variables['System.PullRequest.PullRequestId'], ''), ne(variables['CacheRestored'], 'true'))
|
|
- script: |
|
|
yarn gulp electron-x64
|
|
displayName: Download Electron
|
|
- script: |
|
|
yarn gulp hygiene
|
|
displayName: Run Hygiene Checks
|
|
- script: |
|
|
yarn monaco-compile-check
|
|
displayName: Run Monaco Editor Checks
|
|
- script: |
|
|
yarn compile
|
|
displayName: Compile Sources
|
|
- script: |
|
|
yarn download-builtin-extensions
|
|
displayName: Download Built-in Extensions
|
|
- script: |
|
|
DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests"
|
|
displayName: Run Unit Tests
|
|
- task: PublishTestResults@2
|
|
displayName: Publish Tests Results
|
|
inputs:
|
|
testResultsFiles: '*-results.xml'
|
|
searchFolder: '$(Build.ArtifactStagingDirectory)/test-results'
|
|
condition: succeededOrFailed()
|