Skip to content
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

Standardize analyze across packages #1345

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
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
105 changes: 29 additions & 76 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ jobs:
- name: mono_repo self validate
run: dart pub global run mono_repo generate --validate
job_002:
name: "analyzer_and_format; Dart 3.0.0; PKGS: _test_yaml, checked_yaml, example, json_serializable; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos .`"
name: "analyzer_and_format; Dart 3.0.0; PKGS: _test_yaml, checked_yaml, example, json_annotation, json_serializable; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:_test_yaml-checked_yaml-example-json_serializable;commands:format-analyze_0"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:_test_yaml-checked_yaml-example-json_annotation-json_serializable;commands:analyze_1"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:_test_yaml-checked_yaml-example-json_serializable
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:_test_yaml-checked_yaml-example-json_annotation-json_serializable
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
Expand All @@ -65,74 +65,28 @@ jobs:
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: _test_yaml
- name: "_test_yaml; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps._test_yaml_pub_upgrade.conclusion == 'success'"
working-directory: _test_yaml
- name: "_test_yaml; dart analyze --fatal-infos ."
run: dart analyze --fatal-infos .
- name: _test_yaml; dart analyze
run: dart analyze
if: "always() && steps._test_yaml_pub_upgrade.conclusion == 'success'"
working-directory: _test_yaml
- id: checked_yaml_pub_upgrade
name: checked_yaml; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: checked_yaml
- name: "checked_yaml; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.checked_yaml_pub_upgrade.conclusion == 'success'"
working-directory: checked_yaml
- name: "checked_yaml; dart analyze --fatal-infos ."
run: dart analyze --fatal-infos .
- name: checked_yaml; dart analyze
run: dart analyze
if: "always() && steps.checked_yaml_pub_upgrade.conclusion == 'success'"
working-directory: checked_yaml
- id: example_pub_upgrade
name: example; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: example
- name: "example; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.example_pub_upgrade.conclusion == 'success'"
working-directory: example
- name: "example; dart analyze --fatal-infos ."
run: dart analyze --fatal-infos .
- name: example; dart analyze
run: dart analyze
if: "always() && steps.example_pub_upgrade.conclusion == 'success'"
working-directory: example
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: json_serializable
- name: "json_serializable; dart format --output=none --set-exit-if-changed ."
run: "dart format --output=none --set-exit-if-changed ."
if: "always() && steps.json_serializable_pub_upgrade.conclusion == 'success'"
working-directory: json_serializable
- name: "json_serializable; dart analyze --fatal-infos ."
run: dart analyze --fatal-infos .
if: "always() && steps.json_serializable_pub_upgrade.conclusion == 'success'"
working-directory: json_serializable
job_003:
name: "analyzer_and_format; Dart 3.0.0; PKG: json_annotation; `dart analyze`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:json_annotation;commands:analyze_1"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0;packages:json_annotation
os:ubuntu-latest;pub-cache-hosted;sdk:3.0.0
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Dart SDK
uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
with:
sdk: "3.0.0"
- id: checkout
name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- id: json_annotation_pub_upgrade
name: json_annotation; dart pub upgrade
run: dart pub upgrade
Expand All @@ -142,7 +96,16 @@ jobs:
run: dart analyze
if: "always() && steps.json_annotation_pub_upgrade.conclusion == 'success'"
working-directory: json_annotation
job_004:
- id: json_serializable_pub_upgrade
name: json_serializable; dart pub upgrade
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: json_serializable
- name: json_serializable; dart analyze
run: dart analyze
if: "always() && steps.json_serializable_pub_upgrade.conclusion == 'success'"
working-directory: json_serializable
job_003:
name: "analyzer_and_format; Dart dev; PKGS: _test_yaml, checked_yaml, example, json_annotation, json_serializable; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos .`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -228,7 +191,7 @@ jobs:
run: dart analyze --fatal-infos .
if: "always() && steps.json_serializable_pub_upgrade.conclusion == 'success'"
working-directory: json_serializable
job_005:
job_004:
name: "unit_test; Dart 3.0.0; PKGS: _test_yaml, checked_yaml, example, json_serializable; `dart test`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -289,8 +252,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_006:
job_005:
name: "unit_test; Dart 3.0.0; PKG: json_serializable; `dart test --run-skipped -t presubmit-only test/annotation_version_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -324,8 +286,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_007:
job_006:
name: "unit_test; Dart 3.0.0; PKG: json_serializable; `dart test --run-skipped -t presubmit-only test/ensure_build_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -359,8 +320,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_008:
job_007:
name: "unit_test; Dart 3.0.0; PKG: json_serializable; `dart test -p chrome`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -394,8 +354,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_009:
job_008:
name: "unit_test; Dart dev; PKGS: _test_yaml, checked_yaml, example, json_serializable; `dart test`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -456,8 +415,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_010:
job_009:
name: "unit_test; Dart dev; PKG: json_serializable; `dart test --run-skipped -t presubmit-only test/annotation_version_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -491,8 +449,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_011:
job_010:
name: "unit_test; Dart dev; PKG: json_serializable; `dart test --run-skipped -t presubmit-only test/ensure_build_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -526,8 +483,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_012:
job_011:
name: "unit_test; Dart dev; PKG: json_serializable; `dart test -p chrome`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -561,8 +517,7 @@ jobs:
- job_001
- job_002
- job_003
- job_004
job_013:
job_012:
name: "ensure_build; Dart 3.0.0; PKGS: _test_yaml, checked_yaml, example; `dart test --run-skipped -t presubmit-only test/ensure_build_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -622,8 +577,7 @@ jobs:
- job_009
- job_010
- job_011
- job_012
job_014:
job_013:
name: "ensure_build; Dart dev; PKGS: _test_yaml, checked_yaml, example; `dart test --run-skipped -t presubmit-only test/ensure_build_test.dart`"
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -683,4 +637,3 @@ jobs:
- job_009
- job_010
- job_011
- job_012
4 changes: 4 additions & 0 deletions _test_yaml/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ stages:
- group:
- format
- analyze: --fatal-infos .
sdk: dev
- group:
- analyze
sdk: pubspec
- unit_test:
- test
- ensure_build:
Expand Down
5 changes: 4 additions & 1 deletion checked_yaml/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ stages:
- group:
- format
- analyze: --fatal-infos .

sdk: dev
- group:
- analyze
sdk: pubspec
- unit_test:
- test
- ensure_build:
Expand Down
4 changes: 4 additions & 0 deletions example/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ stages:
- group:
- format
- analyze: --fatal-infos .
sdk: dev
- group:
- analyze
sdk: pubspec
- unit_test:
- test
- ensure_build:
Expand Down
4 changes: 4 additions & 0 deletions json_serializable/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ stages:
- group:
- format
- analyze: --fatal-infos .
sdk: dev
- group:
- analyze
sdk: pubspec
- unit_test:
- test:
- test: -p chrome
Expand Down