mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 12:33:35 +01:00
36 lines
725 B
YAML
36 lines
725 B
YAML
variables:
|
|
ELECTRON_RUN_AS_NODE: 1
|
|
VSCODE_BUILD_VERBOSE: true
|
|
APPVEYOR: true
|
|
System.Debug: true
|
|
|
|
steps:
|
|
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: "8.9.1"
|
|
|
|
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
|
|
inputs:
|
|
versionSpec: "1.3.2"
|
|
|
|
- script: |
|
|
apt-get update
|
|
apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev
|
|
name: "Install Dependencies"
|
|
|
|
- script: |
|
|
git checkout -f master
|
|
yarn
|
|
npm run gulp -- electron-x64
|
|
|
|
- script: |
|
|
npm run gulp -- hygiene
|
|
./node_modules/.bin/tsc -p ./src/tsconfig.monaco.json --noEmit
|
|
npm run gulp -- vscode-linux-x64-min
|
|
name: build
|
|
|
|
- script: |
|
|
./scripts/test.sh --build --reporter dot
|
|
name: test
|