Skip to content

Commit 4e9d3ad

Browse files
authored
Update to new build pipeline (#191)
1 parent 148fa60 commit 4e9d3ad

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Language Server Index Format
22

3+
[![Build Status](https://dev.azure.com/vscode/lsif-node/_apis/build/status%2Flsif-node?branchName=main)](https://dev.azure.com/vscode/lsif-node/_build/latest?definitionId=50&branchName=main)
4+
35
The purpose of the Language Server Index Format (LSIF) is it to define a standard format for language servers or other programming tools to dump their knowledge about a workspace. This dump can later be used to answer language server [LSP](https://microsoft.github.io/language-server-protocol/) requests for the same workspace without running the language server itself. Since much of the information would be invalidated by a change to the workspace, the dumped information typically excludes requests used when mutating a document. So, for example, the result of a code complete request is typically not part of such a dump.
46

57
A first draft specification can be found [here](https://github.com/Microsoft/language-server-protocol/blob/master/indexFormat/specification.md).

build/azure-pipelines/linux/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
steps:
22
- task: NodeTool@0
33
inputs:
4-
versionSpec: '20.9.0'
5-
displayName: 'Use Node.js 20.9.0'
4+
versionSpec: '20.14.0'
5+
displayName: 'Use Node.js 20.14.0'
66

77
- script: |
88
npm ci

build/azure-pipelines/win32/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
steps:
22
- task: NodeTool@0
33
inputs:
4-
versionSpec: '20.9.0'
5-
displayName: 'Use Node.js 20.9.0'
4+
versionSpec: '20.14.0'
5+
displayName: 'Use Node.js 20.14.0'
66

77
- script: |
88
npm ci

0 commit comments

Comments
 (0)