-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(aft): Split e2e workflows (#3611)
- Adds E2E workflows to `aft generate workflows` - Removes mono-workflow for E2E tests - Splits E2E workflows such that they run only when necessary - Adds concurrency settings to all workflows
- Loading branch information
Showing
92 changed files
with
2,348 additions
and
738 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
111 changes: 111 additions & 0 deletions
111
.github/workflows/amplify_analytics_pinpoint_example.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# Generated with aft. To update, run: `aft generate workflows` | ||
name: amplify_analytics_pinpoint_example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
pull_request: | ||
paths: | ||
- '.github/workflows/amplify_analytics_pinpoint_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/analytics/amplify_analytics_pinpoint/example/**/*.dart' | ||
- 'packages/analytics/amplify_analytics_pinpoint/example/**/*.yaml' | ||
- 'packages/analytics/amplify_analytics_pinpoint/example/lib/**/*' | ||
- 'packages/analytics/amplify_analytics_pinpoint/example/test/**/*' | ||
- 'packages/analytics/amplify_analytics_pinpoint/lib/**/*.dart' | ||
- 'packages/analytics/amplify_analytics_pinpoint/pubspec.yaml' | ||
- 'packages/analytics/amplify_analytics_pinpoint_dart/lib/**/*.dart' | ||
- 'packages/analytics/amplify_analytics_pinpoint_dart/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/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common/pubspec.yaml' | ||
- 'packages/common/amplify_db_common_dart/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common_dart/pubspec.yaml' | ||
- 'packages/secure_storage/amplify_secure_storage/lib/**/*.dart' | ||
- 'packages/secure_storage/amplify_secure_storage/pubspec.yaml' | ||
- 'packages/secure_storage/amplify_secure_storage_dart/lib/**/*.dart' | ||
- 'packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml' | ||
- 'packages/smithy/smithy/lib/**/*.dart' | ||
- 'packages/smithy/smithy/pubspec.yaml' | ||
- 'packages/smithy/smithy_aws/lib/**/*.dart' | ||
- 'packages/smithy/smithy_aws/pubspec.yaml' | ||
- 'packages/worker_bee/worker_bee/lib/**/*.dart' | ||
- 'packages/worker_bee/worker_bee/pubspec.yaml' | ||
- 'packages/worker_bee/worker_bee_builder/lib/**/*.dart' | ||
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml' | ||
schedule: | ||
- cron: "0 0 * * 0" # Every Sunday at 00:00 | ||
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 | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
e2e_android_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_android.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true | ||
e2e_ios_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_ios.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true | ||
e2e_web_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_web.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true | ||
e2e_linux_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_linux.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true | ||
e2e_windows_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_windows.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# Generated with aft. To update, run: `aft generate workflows` | ||
name: amplify_api_example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
pull_request: | ||
paths: | ||
- '.github/workflows/amplify_api_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/amplify_flutter/lib/**/*.dart' | ||
- 'packages/amplify/amplify_flutter/pubspec.yaml' | ||
- 'packages/amplify_core/lib/**/*.dart' | ||
- 'packages/amplify_core/pubspec.yaml' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/api/amplify_api/example/**/*.dart' | ||
- 'packages/api/amplify_api/example/**/*.yaml' | ||
- 'packages/api/amplify_api/example/lib/**/*' | ||
- 'packages/api/amplify_api/example/test/**/*' | ||
- 'packages/api/amplify_api/lib/**/*.dart' | ||
- 'packages/api/amplify_api/pubspec.yaml' | ||
- 'packages/api/amplify_api_dart/lib/**/*.dart' | ||
- 'packages/api/amplify_api_dart/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/secure_storage/amplify_secure_storage/lib/**/*.dart' | ||
- 'packages/secure_storage/amplify_secure_storage/pubspec.yaml' | ||
- 'packages/secure_storage/amplify_secure_storage_dart/lib/**/*.dart' | ||
- 'packages/secure_storage/amplify_secure_storage_dart/pubspec.yaml' | ||
- 'packages/worker_bee/worker_bee/lib/**/*.dart' | ||
- 'packages/worker_bee/worker_bee/pubspec.yaml' | ||
- 'packages/worker_bee/worker_bee_builder/lib/**/*.dart' | ||
- 'packages/worker_bee/worker_bee_builder/pubspec.yaml' | ||
schedule: | ||
- cron: "0 0 * * 0" # Every Sunday at 00:00 | ||
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 | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
e2e_android_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_android.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
needs-aws-config: true | ||
e2e_ios_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_ios.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
needs-aws-config: true | ||
e2e_web_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_web.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
needs-aws-config: true | ||
e2e_linux_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_linux.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
needs-aws-config: true | ||
e2e_windows_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_windows.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_api_example | ||
working-directory: packages/api/amplify_api/example | ||
needs-aws-config: true |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.