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
6350d0b4
Unverified
Commit
6350d0b4
authored
Feb 27, 2019
by
Jonah Williams
Committed by
GitHub
Feb 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable dart2js test (#28555)
parent
90d090e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
test.dart
dev/bots/test.dart
+12
-11
No files found.
dev/bots/test.dart
View file @
6350d0b4
...
@@ -168,21 +168,22 @@ Future<void> _runBuildTests() async {
...
@@ -168,21 +168,22 @@ Future<void> _runBuildTests() async {
await
_flutterBuildApk
(
path
);
await
_flutterBuildApk
(
path
);
await
_flutterBuildIpa
(
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
'
);
print
(
'
${bold}
DONE: All build tests successful.
$reset
'
);
}
}
Future
<
void
>
_flutterBuildDart2js
(
String
relativePathToApplication
)
async
{
//
Future<void> _flutterBuildDart2js(String relativePathToApplication) async {
print
(
'Running Dart2JS build tests...'
);
//
print('Running Dart2JS build tests...');
await
runCommand
(
flutter
,
//
await runCommand(flutter,
<
String
>[
'build'
,
'web'
,
'-v'
],
//
<String>['build', 'web', '-v'],
workingDirectory:
path
.
join
(
flutterRoot
,
relativePathToApplication
),
//
workingDirectory: path.join(flutterRoot, relativePathToApplication),
expectNonZeroExit:
false
,
//
expectNonZeroExit: false,
timeout:
_kShortTimeout
,
//
timeout: _kShortTimeout,
);
//
);
print
(
'Done.'
);
//
print('Done.');
}
//
}
Future
<
void
>
_flutterBuildAot
(
String
relativePathToApplication
)
async
{
Future
<
void
>
_flutterBuildAot
(
String
relativePathToApplication
)
async
{
print
(
'Running AOT build tests...'
);
print
(
'Running AOT build tests...'
);
...
...
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