forked from google/mono_repo.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction_info.dart
102 lines (91 loc) · 2.76 KB
/
action_info.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import '../../root_config.dart';
import 'action_versions.dart';
import 'job.dart';
import 'step.dart';
enum ActionInfo implements Comparable<ActionInfo> {
cache(
name: 'Cache Pub hosted dependencies',
repo: 'actions/cache',
version: actionsCacheVersion,
),
checkout(
name: 'Checkout repository',
repo: 'actions/checkout',
version: actionsCheckoutVersion,
),
setupDart(
name: 'Setup Dart SDK',
repo: 'dart-lang/setup-dart',
version: dartLangSetupDartVersion,
),
setupFlutter(
name: 'Setup Flutter SDK',
repo: 'subosito/flutter-action',
version: subositoFlutterActionVersion,
),
/// See https://github.com/marketplace/actions/coveralls-github-action
coveralls(
name: 'Upload coverage to Coveralls',
repo: 'coverallsapp/github-action',
version: coverallsappGithubActionVersion,
completionJobFactory: _coverageCompletionJob,
),
/// See https://github.com/marketplace/actions/codecov
codecov(
name: 'Upload coverage to codecov.io',
repo: 'codecov/codecov-action',
version: codecovCodecovActionVersion,
);
const ActionInfo({
required this.repo,
required this.version,
required this.name,
this.completionJobFactory,
});
final String repo;
final String version;
final String name;
final Job Function(RootConfig rootConfig)? completionJobFactory;
Step usage({
String? name,
String? id,
Map<String, dynamic>? withContent,
Map<String, String>? versionOverrides,
}) {
name ??= this.name;
final useVersion =
(versionOverrides == null ? null : versionOverrides[repo]) ?? version;
final step = Step.uses(
uses: '$repo@$useVersion',
id: id,
name: name,
withContent: withContent,
);
// store away the action info for later use.
_actionInfoExpando[step] = this;
return step;
}
@override
int compareTo(ActionInfo other) => index.compareTo(other.index);
}
Job _coverageCompletionJob(RootConfig rootConfig) => Job(
name: 'Mark Coveralls job finished',
runsOn: 'ubuntu-latest',
steps: [
ActionInfo.coveralls.usage(
name: 'Mark Coveralls job finished',
withContent: {
// https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow
'github-token': r'${{ secrets.GITHUB_TOKEN }}',
'parallel-finished': true
},
versionOverrides: rootConfig.existingActionVersions,
)
],
);
/// Allows finding [ActionInfo] for a corresponding [Step].
final _actionInfoExpando = Expando<ActionInfo>();
extension StepExtension on Step {
bool get hasCompletionJob => actionInfo?.completionJobFactory != null;
ActionInfo? get actionInfo => _actionInfoExpando[this];
}