File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 15
15
permissions : read-all
16
16
17
17
jobs :
18
- # Check code formatting with the stable SDK.
18
+ # Check code formatting with the dev SDK.
19
19
format :
20
20
runs-on : ubuntu-latest
21
21
strategy :
24
24
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
25
25
- uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
26
26
with :
27
- sdk : 3.5.0
27
+ sdk : dev
28
28
- id : install
29
29
name : Install dependencies
30
30
run : dart pub get
37
37
strategy :
38
38
fail-fast : false
39
39
matrix :
40
- sdk : [3.5.0, dev]
40
+ # TODO(srawlins): Re-enable stable Dart when 3.6.0 is available.
41
+ # sdk: [3.5.0, dev]
42
+ sdk : [dev]
41
43
steps :
42
44
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
43
45
- uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
59
61
fail-fast : false
60
62
matrix :
61
63
os : [ubuntu-latest]
62
- sdk : [3.5.0, dev]
64
+ # TODO(srawlins): Re-enable stable Dart when 3.6.0 is available.
65
+ # sdk: [3.5.0, dev]
66
+ sdk : [dev]
63
67
steps :
64
68
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
65
69
- uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
75
79
run : dart run build_runner build --fail-on-severe
76
80
if : always() && steps.install.outcome == 'success'
77
81
- name : Run DDC tests
78
- run : dart run build_runner test -- --platform chrome
82
+ # We run with `--concurrency=1` because of a bug in the test package,
83
+ # I believe: https://github.com/dart-lang/test/issues/2294. We can
84
+ # look into removing this flag when we are using a version of the test
85
+ # package without this bug.
86
+ run : dart run build_runner test -- --platform chrome --concurrency=1
79
87
if : always() && steps.install.outcome == 'success'
80
88
81
89
document :
You can’t perform that action at this time.
0 commit comments