| name: objective_c |
| |
| on: |
| # Run on PRs and pushes to the default branch. |
| push: |
| branches: [main, stable] |
| paths: |
| - '.github/workflows/objective_c.yaml' |
| - 'pkgs/ffigen/**' |
| - 'pkgs/objective_c/**' |
| pull_request: |
| branches: [main, stable] |
| paths: |
| - '.github/workflows/objective_c.yaml' |
| - 'pkgs/ffigen/**' |
| - 'pkgs/objective_c/**' |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| env: |
| PUB_ENVIRONMENT: bot.github |
| |
| jobs: |
| # Check code formatting and static analysis. |
| analyze: |
| runs-on: macos-latest |
| defaults: |
| run: |
| working-directory: pkgs/objective_c/ |
| strategy: |
| fail-fast: false |
| steps: |
| - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 |
| - uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 |
| with: |
| channel: 'stable' |
| - id: install |
| name: Install dependencies |
| run: flutter pub get |
| - name: Check formatting |
| run: dart format --output=none --set-exit-if-changed . |
| if: always() && steps.install.outcome == 'success' |
| - name: Analyze code |
| run: flutter analyze --fatal-infos |
| if: always() && steps.install.outcome == 'success' |
| |
| test-mac: |
| needs: analyze |
| runs-on: 'macos-latest' |
| defaults: |
| run: |
| working-directory: pkgs/objective_c/ |
| steps: |
| - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 |
| - uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 |
| with: |
| channel: 'stable' |
| - name: Install dependencies |
| run: flutter pub get |
| - name: Build test dylib |
| # TODO(https://github.com/dart-lang/native/issues/1068): Remove this. |
| run: dart test/setup.dart |
| - name: Run VM tests and collect coverage |
| run: dart run coverage:test_with_coverage --scope-output=ffigen --scope-output=objective_c |
| - name: Verify generated code is up to date |
| # test/generate_code_test.dart runs the code generator, so if there are |
| # any git-diffs at this point, it means the generated code is outdated. |
| run: if [[ -n $(git status --porcelain | tee /dev/stderr) ]]; then echo -e "\nDIFF:"; git diff; false; fi |
| - name: Upload coverage |
| uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 |
| with: |
| flag-name: objective_c |
| github-token: ${{ secrets.GITHUB_TOKEN }} |
| parallel: true |
| path-to-lcov: pkgs/objective_c/coverage/lcov.info |
| - name: Upload coverage |
| uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 |
| with: |
| carryforward: "ffigen,jni,jnigen,native_assets_builder_macos,native_assets_builder_ubuntu,native_assets_builder_windows,native_assets_cli_macos,native_assets_cli_ubuntu,native_assets_cli_windows,native_toolchain_c_macos,native_toolchain_c_ubuntu,native_toolchain_c_windows,objective_c,swift2objc" |
| github-token: ${{ secrets.GITHUB_TOKEN }} |
| parallel-finished: true |
| |
| build-example: |
| needs: analyze |
| runs-on: 'macos-latest' |
| defaults: |
| run: |
| working-directory: pkgs/objective_c/example/ |
| steps: |
| - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 |
| - uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 |
| with: |
| channel: 'stable' |
| - name: Install dependencies |
| run: flutter pub get |
| - name: Build the example app |
| run: flutter build macos |