Skip to content

Commit

Permalink
ci bump android/windows (10mn) and macos build time (20mn)
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Aug 10, 2023
1 parent 4e023f6 commit b981cd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqflite_support/test/workflow_build_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void workflow({bool noBuild = false}) {
test('build android', () async {
await ensureCreate();
await androidBuild();
}, timeout: const Timeout(Duration(minutes: 5)));
}, timeout: Timeout(Duration(minutes: Platform.isWindows ? 10 : 5)));
test('add sqflite', () async {
await ensureCreate();
if (await pathPubspecAddDependency(dir, 'sqflite')) {
Expand Down
2 changes: 1 addition & 1 deletion sqflite_test_app/test/macos_build_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Future<void> main() async {
var runAppShell = Shell(environment: env, workingDirectory: exeDir);
// We run the generated exe, not the copy as it does not work
await runAppShell.run(shellArgument(join(binSubDir, 'sqflite_test_app')));
}, skip: !platformIsMacOS, timeout: const Timeout(Duration(minutes: 10)));
}, skip: !platformIsMacOS, timeout: const Timeout(Duration(minutes: 20)));
}

0 comments on commit b981cd6

Please sign in to comment.