Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flutter
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
ExcellentOSS
flutter
Commits
6350d0b4
Unverified
Commit
6350d0b4
authored
6 years ago
by
Jonah Williams
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
disable dart2js test (#28555)
parent
90d090e3
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dev/bots/test.dart
+12
-11
12 additions, 11 deletions
dev/bots/test.dart
with
12 additions
and
11 deletions
dev/bots/test.dart
+
12
−
11
View file @
6350d0b4
...
...
@@ -168,21 +168,22 @@ Future<void> _runBuildTests() async {
await
_flutterBuildApk
(
path
);
await
_flutterBuildIpa
(
path
);
}
await
_flutterBuildDart2js
(
path
.
join
(
'dev'
,
'integration_tests'
,
'web'
));
// TODO(jonahwilliams): re-enable when engine rolls.
//await _flutterBuildDart2js(path.join('dev', 'integration_tests', 'web'));
print
(
'
${bold}
DONE: All build tests successful.
$reset
'
);
}
Future
<
void
>
_flutterBuildDart2js
(
String
relativePathToApplication
)
async
{
print
(
'Running Dart2JS build tests...'
);
await
runCommand
(
flutter
,
<
String
>[
'build'
,
'web'
,
'-v'
],
workingDirectory:
path
.
join
(
flutterRoot
,
relativePathToApplication
),
expectNonZeroExit:
false
,
timeout:
_kShortTimeout
,
);
print
(
'Done.'
);
}
//
Future<void> _flutterBuildDart2js(String relativePathToApplication) async {
//
print('Running Dart2JS build tests...');
//
await runCommand(flutter,
//
<String>['build', 'web', '-v'],
//
workingDirectory: path.join(flutterRoot, relativePathToApplication),
//
expectNonZeroExit: false,
//
timeout: _kShortTimeout,
//
);
//
print('Done.');
//
}
Future
<
void
>
_flutterBuildAot
(
String
relativePathToApplication
)
async
{
print
(
'Running AOT build tests...'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment