Skip to content

Commit f9cfab1

Browse files
authored
Fix CI jobs (#2895)
1 parent 6e62882 commit f9cfab1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Test - NNBD branch
33
on:
44
# Run CI on pushes to the main branch, and on PRs against main.
55
push:
6-
branches: [ nnbd ]
6+
branches: [ master ]
77
pull_request:
8-
branches: [ nnbd ]
8+
branches: [ master ]
99
schedule:
1010
- cron: 0 15 * * *
1111

@@ -20,14 +20,14 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest]
2222
sdk: [dev, stable]
23-
job: [nnbd, flutter, sdk-analyzer, packages, sdk-docs]
23+
job: [main, flutter, sdk-analyzer, packages, sdk-docs]
2424
include:
2525
- os: macos-latest
2626
sdk: dev
27-
job: nnbd
27+
job: main
2828
- os: windows-latest
2929
sdk: dev
30-
job: nnbd
30+
job: main
3131
exclude:
3232
# Do not try to run flutter against the "stable" sdk,
3333
# it is unlikely to work and produces uninteresting
@@ -76,8 +76,8 @@ jobs:
7676
DARTDOC_BOT: ${{ matrix.job }}
7777
#COVERAGE_TOKEN: true # this needs to be set to enable coverage
7878
- name: ${{ matrix.job }}
79-
if: runner.os == 'Windows' && matrix.job == 'nnbd'
80-
run: dart run grinder buildbot-no-publish
79+
if: runner.os == 'Windows' && matrix.job == 'main'
80+
run: dart run grinder buildbot
8181
env:
8282
DARTDOC_BOT: ${{ matrix.job }}
8383
# - id: coverage

0 commit comments

Comments
 (0)