Skip to content

Fix CI jobs #2895

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Test - NNBD branch
on:
# Run CI on pushes to the main branch, and on PRs against main.
push:
branches: [ nnbd ]
branches: [ master ]
pull_request:
branches: [ nnbd ]
branches: [ master ]
schedule:
- cron: 0 15 * * *

Expand All @@ -20,14 +20,14 @@ jobs:
matrix:
os: [ubuntu-latest]
sdk: [dev, stable]
job: [nnbd, flutter, sdk-analyzer, packages, sdk-docs]
job: [main, flutter, sdk-analyzer, packages, sdk-docs]
include:
- os: macos-latest
sdk: dev
job: nnbd
job: main
- os: windows-latest
sdk: dev
job: nnbd
job: main
exclude:
# Do not try to run flutter against the "stable" sdk,
# it is unlikely to work and produces uninteresting
Expand Down Expand Up @@ -76,8 +76,8 @@ jobs:
DARTDOC_BOT: ${{ matrix.job }}
#COVERAGE_TOKEN: true # this needs to be set to enable coverage
- name: ${{ matrix.job }}
if: runner.os == 'Windows' && matrix.job == 'nnbd'
run: dart run grinder buildbot-no-publish
if: runner.os == 'Windows' && matrix.job == 'main'
run: dart run grinder buildbot
env:
DARTDOC_BOT: ${{ matrix.job }}
# - id: coverage
Expand Down