mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 15:25:47 +01:00
8422282f04
* chore: update electron@31.0.1
* chore: bump electron@31.1.0
* chore: update sysroot download url
* chore: bump electron@31.3.0
* chore: update rpm deps for arm64
* chore: bump electron@31.4.0
* chore: bump electron@32.0.0
* fix: compile stage
* fix: install on windows
* fix: override node-addon-api to support c++20 with gcc-11
Brings in https://github.com/nodejs/node-addon-api/commit/fed13534c595c52fdd2cbf64d7bffe83de74ef35
to support compilation with gcc>=11
* ci: use gnu++2a for gcc <=9
* ci: fix sdl pipeline
* ci: web stage
* ci: fix alpine stage
* ci: fix legacy server stage
* fix: node-addon-api resolution for remote
* ci: fix legacy arm stage
* chore: sync npm dependencies
* chore: bump electron@32.0.1
* ci: fix monaco editor checks
* ci: fix legacy server stage
* ci: possible concurrent execution
* ci: use foreground scripts on windows
* chore: bump electron@32.0.2
* fix: compilation
Refs https://github.com/electron/electron/commit/204011c3f2bfad1b6b2c9544932bf60b162be05f
* Revert "wco - hardcode devtools location on Linux (#227084)"
This reverts commit dfb96d11d3.
* chore: bump electron@32.1.2
* ci: remove workaround for missing c++20 flags
* ci: use gnu++2a for gcc <=9
* chore: bump distro
* ci: use gnu++17 for legacy arm servers
* fixup! override node-addon-api to support c++20 with gcc-11
Scope to only the affected package versions
* chore: bump @vscode/policy-watcher
* chore: bump @vscode/sqlite3
* chore: bump node.js v20.17.0
* chore: bump distro
* chore: update @vscode/windows-ca-certs
* chore: update builds for electron@32.1.2
* chore: bump distro
* chore: bump dependencies
* ci: fix arm legacy servers
40 lines
980 B
Plaintext
40 lines
980 B
Plaintext
name: "Rich Navigation Indexing"
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
jobs:
|
|
richnav:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/cache@v3
|
|
id: caching-stage
|
|
name: Cache VS Code dependencies
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.os }}-dependencies-${{ hashfiles('package-lock.json') }}
|
|
restore-keys: ${{ runner.os }}-dependencies-
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- name: Install dependencies
|
|
if: steps.caching-stage.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
env:
|
|
npm_config_foreground_scripts: "true"
|
|
|
|
- uses: microsoft/RichCodeNavIndexer@v0.1
|
|
with:
|
|
languages: typescript
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
configFiles: .lsifrc.json
|
|
continue-on-error: true
|