Skip to content

Commit af1d30c

Browse files
chore: pin tests to run against 1.103.3 (#1118)
1 parent ed55c28 commit af1d30c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test-and-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
- main
66
tags:
7-
- 'v*.*.*'
7+
- "v*.*.*"
88
pull_request:
99
workflow_dispatch:
1010
schedule:
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: [ubuntu-latest, windows-2019, macos-latest]
23+
os: [ubuntu-latest, windows-latest, macos-latest]
2424
fail-fast: false
2525

2626
runs-on: ${{ matrix.os }}

scripts/check-vsix-size.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const vsixFileName = path.resolve(
1212
);
1313
const size = fs.statSync(vsixFileName).size;
1414

15-
const maxSize = 8_000_000;
15+
const maxSize = 12_000_000;
1616

1717
if (size >= maxSize) {
1818
throw new Error(

src/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function main(): Promise<any> {
3939

4040
// Download VS Code, unzip it and run the integration test
4141
await runTests({
42-
version: 'insiders', // Download latest insiders.
42+
version: '1.103.2', // TODO(VSCODE-700) Once we fix the test setup issues, we should revert this to 'insiders'
4343
extensionDevelopmentPath,
4444
extensionTestsPath,
4545
launchArgs: [testWorkspace, '--disable-extensions'],

0 commit comments

Comments
 (0)