Skip to content

[Draft] Fix CI pipeline #14717

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .ado/jobs/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,36 @@ parameters:
default:
- BuildEnvironment: PullRequest
Matrix:
- Name: Arm64Debug
BuildPlatform: ARM64
BuildConfiguration: Debug
DeployOptions: --no-deploy # We don't have Arm agents
- Name: X64WebDebug
BuildPlatform: x64
BuildConfiguration: Debug
DeployOptions:
- Name: X86WebDebug
BuildPlatform: x86
BuildConfiguration: Debug
DeployOptions:
- Name: X64Release
BuildPlatform: x64
BuildConfiguration: Release
DeployOptions:
- Name: X86Release
BuildPlatform: x86
BuildConfiguration: Release
DeployOptions:
- Name: X64ReleaseChakra
BuildPlatform: x64
BuildConfiguration: Release
DeployOptions:
UseChakra: true
- Name: X86ReleaseChakra
BuildPlatform: x86
BuildConfiguration: Release
DeployOptions:
UseChakra: true
- BuildEnvironment: Continuous
Matrix:
- Name: Arm64Debug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ export default class IntegrationTestRunner {
}:${frame.column})`,
)
.join();
fail(err);
break;

throw err;
case 'failed':
failWithoutContext('TestModule.markTestPassed(false) was called');
break;
Expand Down Expand Up @@ -136,7 +134,7 @@ export default class IntegrationTestRunner {
function failWithoutContext(message: string) {
const err = new Error(message);
err.stack = '\n';
fail(err);
throw err;
}

// "Borrowed" from LogBoxInspectorStackFrame
Expand Down
Loading