-
Notifications
You must be signed in to change notification settings - Fork 247
132 lines (129 loc) · 5.01 KB
/
amplify_db_common_example.yaml
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Generated with aft. To update, run: `aft generate workflows`
name: amplify_db_common_example
on:
push:
branches:
- main
- stable
paths:
- '.github/workflows/amplify_db_common_example.yaml'
- '.github/workflows/e2e_android.yaml'
- '.github/workflows/e2e_ios.yaml'
- '.github/workflows/e2e_linux.yaml'
- '.github/workflows/e2e_web.yaml'
- '.github/workflows/e2e_windows.yaml'
- '.github/workflows/flutter_vm.yaml'
- 'packages/amplify_core/lib/**/*.dart'
- 'packages/amplify_core/pubspec.yaml'
- 'packages/amplify_lints/lib/**/*.yaml'
- 'packages/amplify_lints/pubspec.yaml'
- 'packages/aws_common/lib/**/*.dart'
- 'packages/aws_common/pubspec.yaml'
- 'packages/aws_signature_v4/lib/**/*.dart'
- 'packages/aws_signature_v4/pubspec.yaml'
- 'packages/common/amplify_db_common/android/**/*'
- 'packages/common/amplify_db_common/example/**/*.dart'
- 'packages/common/amplify_db_common/example/**/*.yaml'
- 'packages/common/amplify_db_common/example/lib/**/*'
- 'packages/common/amplify_db_common/example/test/**/*'
- 'packages/common/amplify_db_common/ios/**/*'
- 'packages/common/amplify_db_common/lib/**/*.dart'
- 'packages/common/amplify_db_common/linux/**/*'
- 'packages/common/amplify_db_common/macos/**/*'
- 'packages/common/amplify_db_common/pubspec.yaml'
- 'packages/common/amplify_db_common/windows/**/*'
- 'packages/common/amplify_db_common_dart/lib/**/*.dart'
- 'packages/common/amplify_db_common_dart/pubspec.yaml'
pull_request:
paths:
- '.github/workflows/amplify_db_common_example.yaml'
- '.github/workflows/e2e_android.yaml'
- '.github/workflows/e2e_ios.yaml'
- '.github/workflows/e2e_linux.yaml'
- '.github/workflows/e2e_web.yaml'
- '.github/workflows/e2e_windows.yaml'
- '.github/workflows/flutter_vm.yaml'
- 'packages/amplify_core/lib/**/*.dart'
- 'packages/amplify_core/pubspec.yaml'
- 'packages/amplify_lints/lib/**/*.yaml'
- 'packages/amplify_lints/pubspec.yaml'
- 'packages/aws_common/lib/**/*.dart'
- 'packages/aws_common/pubspec.yaml'
- 'packages/aws_signature_v4/lib/**/*.dart'
- 'packages/aws_signature_v4/pubspec.yaml'
- 'packages/common/amplify_db_common/android/**/*'
- 'packages/common/amplify_db_common/example/**/*.dart'
- 'packages/common/amplify_db_common/example/**/*.yaml'
- 'packages/common/amplify_db_common/example/lib/**/*'
- 'packages/common/amplify_db_common/example/test/**/*'
- 'packages/common/amplify_db_common/ios/**/*'
- 'packages/common/amplify_db_common/lib/**/*.dart'
- 'packages/common/amplify_db_common/linux/**/*'
- 'packages/common/amplify_db_common/macos/**/*'
- 'packages/common/amplify_db_common/pubspec.yaml'
- 'packages/common/amplify_db_common/windows/**/*'
- 'packages/common/amplify_db_common_dart/lib/**/*.dart'
- 'packages/common/amplify_db_common_dart/pubspec.yaml'
schedule:
- cron: "0 13 * * *" # Everyday at 06:00 PST
workflow_dispatch:
defaults:
run:
shell: bash
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
contents: read
# Cancels in-progress job when there is another push to same ref.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
uses: ./.github/workflows/flutter_vm.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
has-goldens: false
e2e_android_test:
needs: [test]
uses: ./.github/workflows/e2e_android.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
needs-aws-config: true
e2e_ios_test:
needs: [test]
uses: ./.github/workflows/e2e_ios.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
needs-aws-config: true
e2e_web_test:
needs: [test]
uses: ./.github/workflows/e2e_web.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
needs-aws-config: true
e2e_linux_test:
needs: [test]
uses: ./.github/workflows/e2e_linux.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
needs-aws-config: true
e2e_windows_test:
needs: [test]
uses: ./.github/workflows/e2e_windows.yaml
secrets: inherit
with:
package-name: amplify_db_common_example
working-directory: packages/common/amplify_db_common/example
needs-aws-config: true