mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 09:08:53 +01:00
40 lines
850 B
YAML
40 lines
850 B
YAML
variables:
|
|
ELECTRON_RUN_AS_NODE: 1
|
|
VSCODE_BUILD_VERBOSE: true
|
|
APPVEYOR: true
|
|
System.Debug: true
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
apt install libxkbfile-dev
|
|
|
|
- powershell: |
|
|
Get-ChildItem -Recurse -Exclude .git | ForEach-Object { Remove-Item -Recurse -Path $_.FullName -Force }
|
|
|
|
- script: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.safescrlf true
|
|
git checkout -f master
|
|
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: "8.9.1"
|
|
|
|
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
|
|
inputs:
|
|
versionSpec: "1.3.2"
|
|
|
|
- powershell: |
|
|
yarn
|
|
.\node_modules\.bin\gulp electron
|
|
.\node_modules\.bin\tsc -p .\src\tsconfig.monaco.json --noEmit
|
|
npm run compile
|
|
name: build
|
|
|
|
- powershell: |
|
|
node --version
|
|
.\scripts\test.bat
|
|
.\scripts\test-integration.bat
|
|
name: test
|