Skip to content
Merged
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
4 changes: 1 addition & 3 deletions app_dart/lib/src/service/luci_build_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,8 @@ class LuciBuildService {
}
} else if (engineArtifacts is! UnnecessaryEngineArtifacts) {
// This is an error case, as we're setting artifacts for a PR that will never use them.
log.warn(
throw StateError(
'Unexpected engineArtifacts were specified for PR#${pullRequest.number} (${pullRequest.head!.sha})',
null,
StackTrace.current,
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ void main() {
await luci.scheduleTryBuilds(
pullRequest: pullRequest,
targets: [buildTarget],
engineArtifacts: EngineArtifacts.usingExistingEngine(
commitSha: pullRequest.base!.sha!,
engineArtifacts: const EngineArtifacts.noFrameworkTests(
reason: 'Not a flutter/flutter PR',
),
);

Expand Down