chore(infra): Api migrate to Gen 2 E2E #1547
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated with aft. To update, run: `aft generate workflows` | ||
name: amplify_db_common_example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
paths: | ||
- '.github/workflows/amplify_db_common_example.yaml' | ||
- '.github/workflows/e2e_android.yaml' | ||
- '.github/workflows/e2e_ios.yaml' | ||
- '.github/workflows/e2e_linux.yaml' | ||
- '.github/workflows/e2e_web.yaml' | ||
- '.github/workflows/e2e_windows.yaml' | ||
- '.github/workflows/flutter_vm.yaml' | ||
- 'packages/amplify_core/lib/**/*.dart' | ||
- 'packages/amplify_core/pubspec.yaml' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/aws_common/lib/**/*.dart' | ||
- 'packages/aws_common/pubspec.yaml' | ||
- 'packages/aws_signature_v4/lib/**/*.dart' | ||
- 'packages/aws_signature_v4/pubspec.yaml' | ||
- 'packages/common/amplify_db_common/android/**/*' | ||
- 'packages/common/amplify_db_common/example/**/*.dart' | ||
- 'packages/common/amplify_db_common/example/**/*.yaml' | ||
- 'packages/common/amplify_db_common/example/lib/**/*' | ||
- 'packages/common/amplify_db_common/example/test/**/*' | ||
- 'packages/common/amplify_db_common/ios/**/*' | ||
- 'packages/common/amplify_db_common/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common/linux/**/*' | ||
- 'packages/common/amplify_db_common/macos/**/*' | ||
- 'packages/common/amplify_db_common/pubspec.yaml' | ||
- 'packages/common/amplify_db_common/windows/**/*' | ||
- 'packages/common/amplify_db_common_dart/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common_dart/pubspec.yaml' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/amplify_db_common_example.yaml' | ||
- '.github/workflows/e2e_android.yaml' | ||
- '.github/workflows/e2e_ios.yaml' | ||
- '.github/workflows/e2e_linux.yaml' | ||
- '.github/workflows/e2e_web.yaml' | ||
- '.github/workflows/e2e_windows.yaml' | ||
- '.github/workflows/flutter_vm.yaml' | ||
- 'packages/amplify_core/lib/**/*.dart' | ||
- 'packages/amplify_core/pubspec.yaml' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/aws_common/lib/**/*.dart' | ||
- 'packages/aws_common/pubspec.yaml' | ||
- 'packages/aws_signature_v4/lib/**/*.dart' | ||
- 'packages/aws_signature_v4/pubspec.yaml' | ||
- 'packages/common/amplify_db_common/android/**/*' | ||
- 'packages/common/amplify_db_common/example/**/*.dart' | ||
- 'packages/common/amplify_db_common/example/**/*.yaml' | ||
- 'packages/common/amplify_db_common/example/lib/**/*' | ||
- 'packages/common/amplify_db_common/example/test/**/*' | ||
- 'packages/common/amplify_db_common/ios/**/*' | ||
- 'packages/common/amplify_db_common/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common/linux/**/*' | ||
- 'packages/common/amplify_db_common/macos/**/*' | ||
- 'packages/common/amplify_db_common/pubspec.yaml' | ||
- 'packages/common/amplify_db_common/windows/**/*' | ||
- 'packages/common/amplify_db_common_dart/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common_dart/pubspec.yaml' | ||
schedule: | ||
- cron: "0 13 * * *" # Everyday at 06:00 PST | ||
workflow_dispatch: | ||
defaults: | ||
run: | ||
shell: bash | ||
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | ||
permissions: | ||
id-token: write | ||
contents: read | ||
# Cancels in-progress job when there is another push to same ref. | ||
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
uses: ./.github/workflows/flutter_vm.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
has-goldens: false | ||
e2e_android_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_android.yaml | ||
Check failure on line 95 in .github/workflows/amplify_db_common_example.yaml
|
||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_ios_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_ios.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_web_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_web.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_linux_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_linux.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_windows_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_windows.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true |