Skip to content

Commit

Permalink
Revert "[tool] Temporarily skip wearable_rotary from build-examples"
Browse files Browse the repository at this point in the history
This reverts commit 22e10e8.
  • Loading branch information
JSUYA committed Oct 24, 2024
1 parent 22e10e8 commit 1625cb1
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions tools/lib/src/build_examples_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ class BuildExamplesCommand extends PackageLoopingCommand {

bool builtSomething = false;
for (final RepositoryPackage example in package.getExamples()) {
final String packageName = getRelativePosixPath(
example.directory,
from: packagesDir,
);
// TODO(jsuya): Temporarily skip build test of wearable_rotary.
if (packageName == 'wearable_rotary/example') {
builtSomething = true;
print('Skip build test of wearable_rotary/example.');
continue;
}
int exitCode = await processRunner.runAndStream(
'flutter-tizen',
<String>['pub', 'get'],
Expand All @@ -54,6 +44,10 @@ class BuildExamplesCommand extends PackageLoopingCommand {
workingDir: example.directory,
);
if (exitCode != 0) {
final String packageName = getRelativePosixPath(
example.directory,
from: packagesDir,
);
errors.add(packageName);
}
}
Expand Down

0 comments on commit 1625cb1

Please sign in to comment.