mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-01 06:06:04 +00:00
* chore: bump electron@15.3.0 * chore: bump node@16.x * chore: enable render process reuse * Revert "watcher - use `type` property for crash reporter location" This reverts commitbfa488dd8f. * Revert "watcher - enable crash reports on linux (#136264)" This reverts commitaf261488f8. * chore: enable crashpad on linux * chore: bump electron@15.3.1 * chore: update api changes * chore: bump @vscode/sqlite3@5.0.3 * spec: skip non-context aware module unittests * chore: fix perf hook integration with node environment * fix: adopt fs api changes * chore: fix integration tests * chore: bump electron@15.3.2 * chore: bump electron@16.0.0 * temp(macOS): kill test instances in OSS * Revert "temp(macOS): kill test instances in OSS" This reverts commit b0d796c8d64227a5ec012c060bbbee7d9da27568. * chore: update chromium version for clang downloader * some 💄 changes * align with changes * adopt more fs.rm * 💄 * chore: bump @vscode/sqlite3@5.0.4 * fix layers check to account for duplicated types from node.js * update todo for type casts * smoke - fix compile issue * chore: update module cache * watcher - fix unhandled rejection (fix #137416) * ci: update node version * enable stack dumping * update electron types to 16.x * chore: bump @vscode/sqlite3@5.0.5 Refs https://github.com/microsoft/vscode/issues/137496 * fix layer issue * add `AbortSignal` to core types * chore: update linux compile flags Refs797723ec83* ci: fix linux build * ci: update github ci cache * ci: fix remote build in github ci * ci: better fix for remote build * chore: bump azure cache * chore: fix merge conflict * :chore: update to electron@16.0.2 * chore: bump @vscode/sqlite3@5.0.7 * ci: update to gcc-4.9 for remote Refs https://github.com/microsoft/vscode/issues/137659 * ci: switch to buster for linux arm Refs https://github.com/microsoft/vscode/issues/137927 * ci: fix build on linux arm64 * ci: fix arm client compiler toolchain Refs #137927 * chore: bump electron@16.0.3 * ci: fix compile flags for the c toolchain * chore: bump electron@16.0.4 * Add experimental dark mode flag (#139109) * Add experimental dark mode flag * Apply PR feedback * chore: bump electron@16.0.6 * chore: bump electron@16.0.7 Fixes https://github.com/microsoft/vscode/issues/138792 Fixes https://github.com/microsoft/vscode/issues/139300 * chore: experimental highlight API * smoke - fix compile issue * FIXME: custom ELECTRON_RUN_AS_NODE with node worker * Revert "chore: bump electron@16.0.7" This reverts commit5fd01cf37c. * Revert "Revert "chore: bump electron@16.0.7"" This reverts commita7f1b73951. * chore: fix github linux workflow * chore: address review feedback * chore: bump electron@16.0.8 * ci: revert to stretch distro for linux arm Refs https://github.com/microsoft/vscode/issues/137927 * ci: force build * chore: update yarn.lock * address feedback * Revert "FIXME: custom ELECTRON_RUN_AS_NODE with node worker" This reverts commit7b48fa3732. * ci: fix remote folder build * chore: fix github linux ci * 🆙 `versionSpec` Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com> Co-authored-by: Raymond Zhao <raymondzhao@microsoft.com>
350 lines
12 KiB
YAML
350 lines
12 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release/*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- release/*
|
|
|
|
jobs:
|
|
windows:
|
|
name: Windows
|
|
runs-on: windows-latest
|
|
timeout-minutes: 60
|
|
env:
|
|
CHILD_CONCURRENCY: "1"
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "2.x"
|
|
|
|
- name: Compute node modules cache key
|
|
id: nodeModulesCacheKey
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)"
|
|
- name: Cache node_modules archive
|
|
id: cacheNodeModules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ".build/node_modules_cache"
|
|
key: "${{ runner.os }}-cacheNodeModulesArchive-${{ steps.nodeModulesCacheKey.outputs.value }}"
|
|
- name: Extract node_modules archive
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit == 'true' }}
|
|
run: 7z.exe x .build/node_modules_cache/cache.7z -aos
|
|
- name: Get yarn cache directory path
|
|
id: yarnCacheDirPath
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
- name: Cache yarn directory
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
|
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-yarnCacheDir-
|
|
- name: Execute yarn
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
env:
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
|
run: yarn --frozen-lockfile --network-timeout 180000
|
|
- name: Create node_modules archive
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: |
|
|
mkdir -Force .build
|
|
node build/azure-pipelines/common/listNodeModules.js .build/node_modules_list.txt
|
|
mkdir -Force .build/node_modules_cache
|
|
7z.exe a .build/node_modules_cache/cache.7z -mx3 `@.build/node_modules_list.txt
|
|
|
|
- name: Compile and Download
|
|
run: yarn npm-run-all --max_old_space_size=4095 -lp compile "electron x64" playwright-install download-builtin-extensions
|
|
|
|
- name: Compile Integration Tests
|
|
run: yarn --cwd test/integration/browser compile
|
|
|
|
- name: Run Unit Tests (Electron)
|
|
run: .\scripts\test.bat
|
|
|
|
- name: Run Unit Tests (node.js)
|
|
run: yarn test-node
|
|
|
|
- name: Run Unit Tests (Browser, Chromium)
|
|
run: yarn test-browser-no-install --browser chromium
|
|
|
|
- name: Run Integration Tests (Electron)
|
|
run: .\scripts\test-integration.bat
|
|
|
|
- name: Run Integration Tests (Browser, Firefox)
|
|
timeout-minutes: 20
|
|
run: .\scripts\test-web-integration.bat --browser firefox
|
|
|
|
- name: Run Integration Tests (Remote)
|
|
timeout-minutes: 20
|
|
run: .\scripts\test-remote-integration.bat
|
|
|
|
linux:
|
|
name: Linux
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 40
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions
|
|
- name: Setup Build Environment
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 libgbm1
|
|
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
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Compute node modules cache key
|
|
id: nodeModulesCacheKey
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)"
|
|
- name: Cache node modules
|
|
id: cacheNodeModules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: "**/node_modules"
|
|
key: ${{ runner.os }}-cacheNodeModules19-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-cacheNodeModules19-
|
|
- name: Get yarn cache directory path
|
|
id: yarnCacheDirPath
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
- name: Cache yarn directory
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
|
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-yarnCacheDir-
|
|
- name: Execute yarn
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
env:
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
|
run: yarn --frozen-lockfile --network-timeout 180000
|
|
|
|
- name: Compile and Download
|
|
run: yarn npm-run-all --max_old_space_size=4095 -lp compile "electron x64" playwright-install download-builtin-extensions
|
|
|
|
- name: Compile Integration Tests
|
|
run: yarn --cwd test/integration/browser compile
|
|
|
|
- name: Run Unit Tests (Electron)
|
|
id: electron-unit-tests
|
|
run: DISPLAY=:10 ./scripts/test.sh
|
|
|
|
- name: Run Unit Tests (node.js)
|
|
id: nodejs-unit-tests
|
|
run: yarn test-node
|
|
|
|
- name: Run Unit Tests (Browser, Chromium)
|
|
id: browser-unit-tests
|
|
run: DISPLAY=:10 yarn test-browser-no-install --browser chromium
|
|
|
|
- name: Run Integration Tests (Electron)
|
|
id: electron-integration-tests
|
|
run: DISPLAY=:10 ./scripts/test-integration.sh
|
|
|
|
- name: Run Integration Tests (Browser, Chromium)
|
|
id: browser-integration-tests
|
|
run: DISPLAY=:10 ./scripts/test-web-integration.sh --browser chromium
|
|
|
|
- name: Run Integration Tests (Remote)
|
|
id: electron-remote-integration-tests
|
|
timeout-minutes: 15
|
|
run: DISPLAY=:10 ./scripts/test-remote-integration.sh
|
|
|
|
darwin:
|
|
name: macOS
|
|
runs-on: macos-latest
|
|
timeout-minutes: 40
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Compute node modules cache key
|
|
id: nodeModulesCacheKey
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)"
|
|
- name: Cache node modules
|
|
id: cacheNodeModules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: "**/node_modules"
|
|
key: ${{ runner.os }}-cacheNodeModules19-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-cacheNodeModules19-
|
|
- name: Get yarn cache directory path
|
|
id: yarnCacheDirPath
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
- name: Cache yarn directory
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
|
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-yarnCacheDir-
|
|
- name: Execute yarn
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
env:
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
|
run: yarn --frozen-lockfile --network-timeout 180000
|
|
|
|
- name: Compile and Download
|
|
run: yarn npm-run-all --max_old_space_size=4095 -lp compile "electron x64" playwright-install download-builtin-extensions
|
|
|
|
- name: Compile Integration Tests
|
|
run: yarn --cwd test/integration/browser compile
|
|
|
|
# This is required for keytar unittests, otherwise we hit
|
|
# https://github.com/atom/node-keytar/issues/76
|
|
- name: Create temporary keychain
|
|
run: |
|
|
security create-keychain -p pwd $RUNNER_TEMP/buildagent.keychain
|
|
security default-keychain -s $RUNNER_TEMP/buildagent.keychain
|
|
security unlock-keychain -p pwd $RUNNER_TEMP/buildagent.keychain
|
|
|
|
- name: Run Unit Tests (Electron)
|
|
run: DISPLAY=:10 ./scripts/test.sh
|
|
|
|
- name: Run Unit Tests (node.js)
|
|
run: yarn test-node
|
|
|
|
- name: Run Unit Tests (Browser, Chromium)
|
|
run: DISPLAY=:10 yarn test-browser-no-install --browser chromium
|
|
|
|
- name: Run Integration Tests (Electron)
|
|
run: DISPLAY=:10 ./scripts/test-integration.sh
|
|
|
|
- name: Run Integration Tests (Browser, Webkit)
|
|
run: DISPLAY=:10 ./scripts/test-web-integration.sh --browser webkit
|
|
|
|
- name: Run Integration Tests (Remote)
|
|
timeout-minutes: 15
|
|
run: DISPLAY=:10 ./scripts/test-remote-integration.sh
|
|
|
|
hygiene:
|
|
name: Hygiene, Layering and Monaco Editor
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 40
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Compute node modules cache key
|
|
id: nodeModulesCacheKey
|
|
run: echo "::set-output name=value::$(node build/azure-pipelines/common/computeNodeModulesCacheKey.js)"
|
|
- name: Cache node modules
|
|
id: cacheNodeModules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: "**/node_modules"
|
|
key: ${{ runner.os }}-cacheNodeModules19-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-cacheNodeModules19-
|
|
- name: Get yarn cache directory path
|
|
id: yarnCacheDirPath
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
- name: Cache yarn directory
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
|
key: ${{ runner.os }}-yarnCacheDir-${{ steps.nodeModulesCacheKey.outputs.value }}
|
|
restore-keys: ${{ runner.os }}-yarnCacheDir-
|
|
- name: Execute yarn
|
|
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
|
|
env:
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
|
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
|
|
run: yarn --frozen-lockfile --network-timeout 180000
|
|
|
|
- name: Download Playwright
|
|
run: yarn playwright-install
|
|
|
|
- name: Run Hygiene Checks
|
|
run: yarn gulp hygiene
|
|
|
|
- name: Run Valid Layers Checks
|
|
run: yarn valid-layers-check
|
|
|
|
- name: Compile /build/
|
|
run: yarn --cwd build compile
|
|
|
|
- name: Check clean git state
|
|
run: ./.github/workflows/check-clean-git-state.sh
|
|
|
|
- name: Run eslint
|
|
run: yarn eslint
|
|
|
|
- name: Run Monaco Editor Checks
|
|
run: yarn monaco-compile-check
|
|
|
|
- name: Run vscode-dts Compile Checks
|
|
run: yarn vscode-dts-compile-check
|
|
|
|
- name: Run Trusted Types Checks
|
|
run: yarn tsec-compile-check
|
|
|
|
- name: Editor Distro & ESM Bundle
|
|
run: yarn gulp editor-esm-bundle
|
|
|
|
- name: Editor ESM sources check
|
|
working-directory: ./test/monaco
|
|
run: yarn run esm-check
|
|
|
|
- name: Typings validation prep
|
|
run: |
|
|
mkdir typings-test
|
|
|
|
- name: Typings validation
|
|
working-directory: ./typings-test
|
|
run: |
|
|
yarn init -yp
|
|
../node_modules/.bin/tsc --init
|
|
echo "import '../out-monaco-editor-core';" > a.ts
|
|
../node_modules/.bin/tsc --noEmit
|
|
|
|
- name: Package Editor with Webpack
|
|
working-directory: ./test/monaco
|
|
run: yarn run bundle-webpack
|
|
|
|
- name: Compile Editor Tests
|
|
working-directory: ./test/monaco
|
|
run: yarn run compile
|
|
|
|
- name: Run Editor Tests
|
|
timeout-minutes: 5
|
|
working-directory: ./test/monaco
|
|
run: yarn test
|