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 1515permissions : read-all
1616
1717jobs :
18- # Check code formatting with the stable SDK.
18+ # Check code formatting with the dev SDK.
1919 format :
2020 runs-on : ubuntu-latest
2121 strategy :
2424 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2525 - uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
2626 with :
27- sdk : 3.5.0
27+ sdk : dev
2828 - id : install
2929 name : Install dependencies
3030 run : dart pub get
3737 strategy :
3838 fail-fast : false
3939 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]
4143 steps :
4244 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4345 - uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
5961 fail-fast : false
6062 matrix :
6163 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]
6367 steps :
6468 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
6569 - uses : dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
7579 run : dart run build_runner build --fail-on-severe
7680 if : always() && steps.install.outcome == 'success'
7781 - 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
7987 if : always() && steps.install.outcome == 'success'
8088
8189 document :
You can’t perform that action at this time.
0 commit comments