Skip to content

Commit 6a5caf9

Browse files
Merge pull request #1243 from zino-hofmann/macros/fix_ci
ci: remove the spec dependences
2 parents 312dc6c + 43d0a92 commit 6a5caf9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
CC=dart pub global run melos
2-
CC_TEST=spec
2+
#CC_TEST=spec
3+
CC_TEST=for d in ./packages/*/ ; do (echo $$d && cd $$d && dart test); done
34
CC_CHANGELOG=dart pub global run changelog_cmd
45

56
default: analyze check
67

78
dep:
89
dart pub global activate melos;
9-
dart pub global activate spec_cli;
10+
#dart pub global activate spec_cli;
1011
dart pub global activate changelog_cmd;
1112
$(CC) bootstrap
1213

@@ -52,4 +53,4 @@ changelog: changelog_client changelog_flutter
5253
ci: dep check_client check_flutter
5354

5455
clean:
55-
$(CC) clean
56+
$(CC) clean

packages/graphql_flutter/example/lib/generated_plugin_registrant.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// ignore_for_file: directives_ordering
66
// ignore_for_file: lines_longer_than_80_chars
7+
// ignore_for_file: depend_on_referenced_packages
78

89
import 'package:connectivity_plus_web/connectivity_plus_web.dart';
910

0 commit comments

Comments
 (0)