Skip to content

Commit cda7451

Browse files
authored
Temporarily reducing VS Code version to 1.46.0 due to issues with 1.47.0 (#1187)
Tracking issue here: microsoft/vscode#102428 TODO: Remove this hack once 1.47.0 (or newer) resolves the issues here. We can manually run tests by overriding the SAM value in CodeBuild.
1 parent f5d0a85 commit cda7451

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

buildspec/linuxIntegrationTests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
version: 0.2
22

3+
env:
4+
variables:
5+
VSCODE_TEST_VERSION: '1.46.0' # TODO: Remove when we resolve debugger issues with integration tests
6+
37
phases:
48
install:
59
runtime-versions:

buildspec/windowsTests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ version: 0.2
22
env:
33
variables:
44
AWS_TOOLKIT_TEST_NO_COLOR: '1'
5+
VSCODE_TEST_VERSION: '1.46.0' # TODO: Remove when we resolve debugger issues with Windows tests
56
phases:
67
install:
78
commands:
89
- |
9-
if(-Not($Env:CODE_COV_TOKEN -eq $null)) {
10-
choco install -y --no-progress codecov
11-
}
12-
10+
if(-Not($Env:CODE_COV_TOKEN -eq $null)) {
11+
choco install -y --no-progress codecov
12+
}
1313
pre_build:
1414
commands:
1515
- npm install
@@ -29,7 +29,6 @@ phases:
2929
-f "build/reports/jacoco/coverageReport/coverageReport.xml" `
3030
-c $Env:CODEBUILD_RESOLVED_SOURCE_VERSION
3131
}
32-
3332
reports:
3433
unit-test:
3534
files:

0 commit comments

Comments
 (0)