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

chore(version): Bump version #4216

Merged
merged 15 commits into from
Dec 6, 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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions .github/composite_actions/log_cw_metric/dist/main.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .github/composite_actions/log_cw_metric/dist/main.cjs.map

Large diffs are not rendered by default.

10 changes: 1 addition & 9 deletions .github/composite_actions/log_cw_metric_wrapper/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Exit if not scheduled
shell: bash
run: |
if [ "${{ github.event_name }}" != "schedule" ]; then
echo "This was not triggered by a schedule, skipping."
echo "SKIP_CW=true" >> $GITHUB_ENV
fi

- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
if: env.SKIP_CW != 'true'
with:
Expand All @@ -83,7 +75,7 @@ runs:
job-status: ${{ inputs.job-status }}
github-token: ${{ inputs.github-token }}

metric-name: "github_metric_2.0"
metric-name: "github_metric_2.1"
test-type: ${{ inputs.test-type }}
working-directory: ${{ inputs.working-directory }}

Expand Down
41 changes: 21 additions & 20 deletions .github/composite_actions/setup_chromedriver/dist/main.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions .github/composite_actions/setup_chromedriver/dist/main.cjs.map

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions .github/workflows/e2e_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
api-level:
- 24
- 33
channel:
- beta
- stable
# Skips e2e tests against beta on PRs, except for auth
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
exclude:
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}

steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # 3.5.3
with:
Expand All @@ -43,6 +51,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
channel: ${{ matrix.channel }}

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/e2e_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ on:
jobs:
e2e-test-ios:
runs-on: macos-latest-xl
strategy:
# Allows other matrix items to run if one fails
fail-fast: false
matrix:
channel:
- beta
- stable
# Skips e2e tests against beta on PRs, except for auth
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
exclude:
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
Expand All @@ -30,6 +42,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
channel: ${{ matrix.channel }}

- name: Launch iOS simulator
uses: ./.github/composite_actions/launch_ios_simulator
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/e2e_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ jobs:
e2e-test-linux:
runs-on:
labels: amplify-flutter_ubuntu-latest_4-core
strategy:
# Allows other matrix items to run if one fails
fail-fast: false
matrix:
channel:
- beta
- stable
# Skips e2e tests against beta on PRs, except for auth
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
exclude:
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
Expand All @@ -31,6 +43,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
channel: ${{ matrix.channel }}

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/e2e_web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ jobs:
e2e-test-web:
runs-on:
labels: amplify-flutter_ubuntu-latest_4-core
strategy:
# Allows other matrix items to run if one fails
fail-fast: false
matrix:
channel:
- beta
- stable
# Skips e2e tests against beta on PRs, except for auth
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
exclude:
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
Expand All @@ -31,6 +43,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
channel: ${{ matrix.channel }}

- name: Pub Upgrade
run: aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/e2e_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ jobs:
e2e-test-windows:
runs-on:
labels: amplify-flutter_windows-latest_8-core
strategy:
# Allows other matrix items to run if one fails
fail-fast: false
matrix:
channel:
- beta
- stable
# Skips e2e tests against beta on PRs, except for auth
# Todo(Jordan-Nelson): Update tests to skip beta for auth once flutter 3.16.0 becomes stable.
exclude:
- channel: ${{ (github.event_name == 'pull_request' && inputs.package-name != 'amplify_auth_cognito_example' && 'beta') || 'NONE' }}

# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
Expand All @@ -34,6 +46,8 @@ jobs:

- name: Install dependencies
uses: ./.github/composite_actions/install_dependencies
with:
channel: ${{ matrix.channel }}

- name: Pub Upgrade
run: dart pub global run aft exec --include=${{ inputs.package-name }} -- flutter pub upgrade
Expand Down
Loading
Loading