| # Created with package:mono_repo v6.5.7 |
| name: Dart CI |
| on: |
| push: |
| branches: master |
| pull_request: |
| branches: master |
| schedule: |
| - cron: "0 0 * * 0" |
| defaults: |
| run: |
| shell: bash |
| env: |
| PUB_ENVIRONMENT: bot.github |
| permissions: read-all |
| |
| jobs: |
| job_001: |
| name: mono_repo self validate |
| 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:stable" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: stable |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - name: mono_repo self validate |
| run: dart pub global activate mono_repo 6.5.7 |
| - name: mono_repo self validate |
| run: dart pub global run mono_repo generate --validate |
| job_002: |
| name: "format_analyze; linux; Dart 2.12.0; PKG: protobuf; `dart analyze lib`, `dart analyze test`" |
| 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:2.12.0;packages:protobuf;commands:analyze_1-analyze_2" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.12.0;packages:protobuf |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.12.0 |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.12.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart analyze lib |
| run: dart analyze lib |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart analyze test |
| run: dart analyze test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| job_003: |
| name: "format_analyze; linux; Dart dev; PKG: api_benchmark; `dart format --output=none --set-exit-if-changed .`, `./../tool/setup.sh`, `./compile_protos.sh`, `dart analyze --fatal-infos`" |
| 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:dev;packages:api_benchmark;commands:format-command_0-command_1-analyze_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:api_benchmark |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: api_benchmark_pub_upgrade |
| name: api_benchmark; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: api_benchmark |
| - name: "api_benchmark; dart format --output=none --set-exit-if-changed ." |
| run: "dart format --output=none --set-exit-if-changed ." |
| if: "always() && steps.api_benchmark_pub_upgrade.conclusion == 'success'" |
| working-directory: api_benchmark |
| - name: api_benchmark; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.api_benchmark_pub_upgrade.conclusion == 'success'" |
| working-directory: api_benchmark |
| - name: api_benchmark; ./compile_protos.sh |
| run: ./compile_protos.sh |
| if: "always() && steps.api_benchmark_pub_upgrade.conclusion == 'success'" |
| working-directory: api_benchmark |
| - name: "api_benchmark; dart analyze --fatal-infos" |
| run: dart analyze --fatal-infos |
| if: "always() && steps.api_benchmark_pub_upgrade.conclusion == 'success'" |
| working-directory: api_benchmark |
| job_004: |
| name: "format_analyze; linux; Dart dev; PKG: benchmarks; `dart format --output=none --set-exit-if-changed .`, `./../tool/setup.sh`, `./tool/compile_protos.sh`, `dart analyze --fatal-infos`" |
| 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:dev;packages:benchmarks;commands:format-command_0-command_2-analyze_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:benchmarks |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: benchmarks_pub_upgrade |
| name: benchmarks; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: benchmarks |
| - name: "benchmarks; dart format --output=none --set-exit-if-changed ." |
| run: "dart format --output=none --set-exit-if-changed ." |
| if: "always() && steps.benchmarks_pub_upgrade.conclusion == 'success'" |
| working-directory: benchmarks |
| - name: benchmarks; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.benchmarks_pub_upgrade.conclusion == 'success'" |
| working-directory: benchmarks |
| - name: benchmarks; ./tool/compile_protos.sh |
| run: ./tool/compile_protos.sh |
| if: "always() && steps.benchmarks_pub_upgrade.conclusion == 'success'" |
| working-directory: benchmarks |
| - name: "benchmarks; dart analyze --fatal-infos" |
| run: dart analyze --fatal-infos |
| if: "always() && steps.benchmarks_pub_upgrade.conclusion == 'success'" |
| working-directory: benchmarks |
| job_005: |
| name: "format_analyze; linux; Dart dev; PKG: protobuf; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos`" |
| 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:dev;packages:protobuf;commands:format-analyze_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:protobuf |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: "protobuf; dart format --output=none --set-exit-if-changed ." |
| run: "dart format --output=none --set-exit-if-changed ." |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| - name: "protobuf; dart analyze --fatal-infos" |
| run: dart analyze --fatal-infos |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| job_006: |
| name: "format_analyze; linux; Dart dev; PKG: protoc_plugin; `dart format --output=none --set-exit-if-changed .`, `./../tool/setup.sh`, `make protos`, `dart analyze --fatal-infos bin lib test`" |
| 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:dev;packages:protoc_plugin;commands:format-command_0-command_3-analyze_3" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:protoc_plugin |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protoc_plugin_pub_upgrade |
| name: protoc_plugin; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: "protoc_plugin; dart format --output=none --set-exit-if-changed ." |
| run: "dart format --output=none --set-exit-if-changed ." |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; make protos |
| run: make protos |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: "protoc_plugin; dart analyze --fatal-infos bin lib test" |
| run: dart analyze --fatal-infos bin lib test |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| job_007: |
| name: "run_tests; linux; Dart 2.12.0; PKG: protobuf; `dart test`" |
| 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:2.12.0;packages:protobuf;commands:test_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.12.0;packages:protobuf |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.12.0 |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.12.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_008: |
| name: "run_tests; linux; Dart 2.17.0; PKG: protoc_plugin; `./../tool/setup.sh`, `make protos`, `dart test`" |
| 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:2.17.0;packages:protoc_plugin;commands:command_0-command_3-test_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.17.0;packages:protoc_plugin |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.17.0 |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.17.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protoc_plugin_pub_upgrade |
| name: protoc_plugin; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; make protos |
| run: make protos |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; dart test |
| run: dart test |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_009: |
| name: "run_tests; linux; Dart dev; PKG: protobuf; `dart test`" |
| 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:dev;packages:protobuf;commands:test_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:protobuf |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_010: |
| name: "run_tests; linux; Dart dev; PKG: protoc_plugin; `./../tool/setup.sh`, `make protos`, `dart test`" |
| 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:dev;packages:protoc_plugin;commands:command_0-command_3-test_0" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:protoc_plugin |
| os:ubuntu-latest;pub-cache-hosted;sdk:dev |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protoc_plugin_pub_upgrade |
| name: protoc_plugin; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; make protos |
| run: make protos |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; dart test |
| run: dart test |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_011: |
| name: "run_tests; osx; Dart 2.12.0; PKG: protobuf; `dart test`" |
| runs-on: macos-latest |
| steps: |
| - name: Cache Pub hosted dependencies |
| uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 |
| with: |
| path: "~/.pub-cache/hosted" |
| key: "os:macos-latest;pub-cache-hosted;sdk:2.12.0;packages:protobuf;commands:test_0" |
| restore-keys: | |
| os:macos-latest;pub-cache-hosted;sdk:2.12.0;packages:protobuf |
| os:macos-latest;pub-cache-hosted;sdk:2.12.0 |
| os:macos-latest;pub-cache-hosted |
| os:macos-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.12.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_012: |
| name: "run_tests; osx; Dart dev; PKG: protobuf; `dart test`" |
| runs-on: macos-latest |
| steps: |
| - name: Cache Pub hosted dependencies |
| uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 |
| with: |
| path: "~/.pub-cache/hosted" |
| key: "os:macos-latest;pub-cache-hosted;sdk:dev;packages:protobuf;commands:test_0" |
| restore-keys: | |
| os:macos-latest;pub-cache-hosted;sdk:dev;packages:protobuf |
| os:macos-latest;pub-cache-hosted;sdk:dev |
| os:macos-latest;pub-cache-hosted |
| os:macos-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_013: |
| name: "run_tests; windows; Dart 2.12.0; PKG: protobuf; `dart test`" |
| runs-on: windows-latest |
| steps: |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.12.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_014: |
| name: "run_tests; windows; Dart dev; PKG: protobuf; `dart test`" |
| runs-on: windows-latest |
| steps: |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: dev |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protobuf_pub_upgrade |
| name: protobuf; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protobuf |
| - name: protobuf; dart test |
| run: dart test |
| if: "always() && steps.protobuf_pub_upgrade.conclusion == 'success'" |
| working-directory: protobuf |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| job_015: |
| name: "run_legacy_tests; linux; Dart 2.17.0; PKG: protoc_plugin; `./../tool/setup.sh`, `make protos`, `dart test legacy_tests/generated_message_test.dart`" |
| 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:2.17.0;packages:protoc_plugin;commands:command_0-command_3-test_1" |
| restore-keys: | |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.17.0;packages:protoc_plugin |
| os:ubuntu-latest;pub-cache-hosted;sdk:2.17.0 |
| os:ubuntu-latest;pub-cache-hosted |
| os:ubuntu-latest |
| - name: Setup Dart SDK |
| uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f |
| with: |
| sdk: "2.17.0" |
| - id: checkout |
| name: Checkout repository |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab |
| - id: protoc_plugin_pub_upgrade |
| name: protoc_plugin; dart pub upgrade |
| run: dart pub upgrade |
| if: "always() && steps.checkout.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; ./../tool/setup.sh |
| run: ./../tool/setup.sh |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; make protos |
| run: make protos |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| - name: protoc_plugin; dart test legacy_tests/generated_message_test.dart |
| run: dart test legacy_tests/generated_message_test.dart |
| if: "always() && steps.protoc_plugin_pub_upgrade.conclusion == 'success'" |
| working-directory: protoc_plugin |
| needs: |
| - job_001 |
| - job_002 |
| - job_003 |
| - job_004 |
| - job_005 |
| - job_006 |
| - job_007 |
| - job_008 |
| - job_009 |
| - job_010 |
| - job_011 |
| - job_012 |
| - job_013 |
| - job_014 |