File tree Expand file tree Collapse file tree 6 files changed +16
-74
lines changed Expand file tree Collapse file tree 6 files changed +16
-74
lines changed Original file line number Diff line number Diff line change @@ -473,21 +473,3 @@ jobs:
473
473
run : flutter analyze
474
474
if : " always() && steps.examples_fullstack_frontend_pub_upgrade.conclusion == 'success'"
475
475
working-directory : examples/fullstack/frontend
476
- job_007 :
477
- name : Notify failure
478
- runs-on : ubuntu-latest
479
- if : " (github.event_name == 'push' || github.event_name == 'schedule') && failure()"
480
- steps :
481
- - run : |
482
- curl -H "Content-Type: application/json" -X POST -d \
483
- "{'text':'Build failed! ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}'}" \
484
- "${CHAT_WEBHOOK_URL}"
485
- env:
486
- CHAT_WEBHOOK_URL: "${{ secrets.CHAT_WEBHOOK_URL }}"
487
- needs :
488
- - job_001
489
- - job_002
490
- - job_003
491
- - job_004
492
- - job_005
493
- - job_006
Original file line number Diff line number Diff line change @@ -359,22 +359,3 @@ jobs:
359
359
run : dart test
360
360
if : " always() && steps.google_cloud_pub_upgrade.conclusion == 'success'"
361
361
working-directory : google_cloud
362
- job_008 :
363
- name : Notify failure
364
- runs-on : ubuntu-latest
365
- if : " (github.event_name == 'push' || github.event_name == 'schedule') && failure()"
366
- steps :
367
- - run : |
368
- curl -H "Content-Type: application/json" -X POST -d \
369
- "{'text':'Build failed! ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}'}" \
370
- "${CHAT_WEBHOOK_URL}"
371
- env:
372
- CHAT_WEBHOOK_URL: "${{ secrets.CHAT_WEBHOOK_URL }}"
373
- needs :
374
- - job_001
375
- - job_002
376
- - job_003
377
- - job_004
378
- - job_005
379
- - job_006
380
- - job_007
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ dev_dependencies:
24
24
build_runner : ^2.2.1
25
25
build_verify : ^3.0.0
26
26
dart_flutter_team_lints : ^3.0.0
27
- json_serializable : ^6.6 .0
27
+ json_serializable : ^6.9 .0
28
28
test : ^1.21.6
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ void main() {
157
157
await expectLater (
158
158
proc.stderr,
159
159
emitsInOrder ([
160
- 'Could not find an option named "bob".' ,
160
+ 'Could not find an option named "-- bob".' ,
161
161
...LineSplitter .split (_usage),
162
162
]),
163
163
);
@@ -193,7 +193,7 @@ void main() {
193
193
await expectLater (
194
194
proc.stderr,
195
195
emitsInOrder ([
196
- '"foo" is not an allowed value for option "signature-type".' ,
196
+ '"foo" is not an allowed value for option "-- signature-type".' ,
197
197
...LineSplitter .split (_usage),
198
198
]),
199
199
);
Original file line number Diff line number Diff line change @@ -25,16 +25,3 @@ github:
25
25
name : Dart Unit CI
26
26
stages :
27
27
- unit_test
28
-
29
- on_completion :
30
- - name : " Notify failure"
31
- runs-on : ubuntu-latest
32
- # Run only if other jobs have failed and this is a push or scheduled build.
33
- if : (github.event_name == 'push' || github.event_name == 'schedule') && failure()
34
- steps :
35
- - run : >
36
- curl -H "Content-Type: application/json" -X POST -d \
37
- "{'text':'Build failed! ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}'}" \
38
- "${CHAT_WEBHOOK_URL}"
39
- env:
40
- CHAT_WEBHOOK_URL: ${{ secrets.CHAT_WEBHOOK_URL }}
You can’t perform that action at this time.
0 commit comments