Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
a01e4733
Unverified
Commit
a01e4733
authored
Sep 14, 2021
by
stuartmorgan
Committed by
GitHub
Sep 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-enable plugin analysis test (#89856)
parent
cdad35f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
.ci.yaml
.ci.yaml
+0
-1
test.dart
dev/bots/test.dart
+18
-4
No files found.
.ci.yaml
View file @
a01e4733
...
...
@@ -349,7 +349,6 @@ targets:
scheduler
:
luci
-
name
:
Linux flutter_plugins
bringup
:
true
# https://github.com/flutter/flutter/issues/89805
recipe
:
flutter/flutter_drone
timeout
:
60
properties
:
...
...
dev/bots/test.dart
View file @
a01e4733
...
...
@@ -1140,16 +1140,30 @@ Future<void> _runFlutterPluginsTests() async {
],
workingDirectory:
checkout
.
path
,
);
// Prep the repository tooling.
// This test does not use tool_runner.sh because in this context the test
// should always run on the entire plugins repo, while tool_runner.sh
// is designed for flutter/plugins CI and only analyzes changed repository
// files when run for anything but master.
final
String
toolDir
=
path
.
join
(
checkout
.
path
,
'script'
,
'tool'
);
await
runCommand
(
'
./script/tool_runner.sh
'
,
'
dart
'
,
<
String
>[
'pub'
,
'get'
,
],
workingDirectory:
toolDir
,
);
final
String
toolScript
=
path
.
join
(
toolDir
,
'bin'
,
'flutter_plugin_tools.dart'
);
await
runCommand
(
'dart'
,
<
String
>[
'run'
,
toolScript
,
'analyze'
,
'--custom-analysis=script/configs/custom_analysis.yaml'
,
],
workingDirectory:
checkout
.
path
,
environment:
<
String
,
String
>{
'BRANCH_NAME'
:
'master'
,
},
);
}
await
selectSubshard
(<
String
,
ShardRunner
>{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment