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 #3725

Merged
merged 31 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
21fe3b1
ci: Unset AWS credentials (#3641)
dnys1 Aug 29, 2023
15caecc
chore(repo): Bump pigeon to `^11.0.0` (#3642)
dnys1 Aug 29, 2023
436f62d
test(auth): MFA preference tests (#3629)
dnys1 Aug 30, 2023
1f0501b
chore(deps): Bump sqlite3 to `3.43.0` (#3623)
dependabot[bot] Aug 30, 2023
7dc8b73
chore(deps): Bump actions/checkout from 3.5.3 to 3.6.0 (#3605)
dependabot[bot] Aug 30, 2023
7cc5bc1
chore(deps): Update dart-lang/setup-dart requirement to e58aeb62aef51…
dependabot[bot] Aug 30, 2023
d981ffc
chore(deps): Bump org.mockito:mockito-core from 5.4.0 to 5.5.0 in /pa…
dependabot[bot] Aug 30, 2023
7b85b28
chore(deps): Bump org.mockito:mockito-core from 5.4.0 to 5.5.0 in /pa…
dependabot[bot] Aug 30, 2023
347bd3f
chore(deps): Bump `code_builder`
Aug 30, 2023
a8a1e45
chore(deps): Align Authenticator dep
Aug 30, 2023
8ddaf17
feat(actions): Android emulator action (#3514)
dnys1 Aug 30, 2023
ec753c7
feat(aft): Split e2e workflows (#3611)
dnys1 Aug 31, 2023
ecff564
test(auth): Resend user attribute confirmation code (#3651)
dnys1 Aug 31, 2023
61d861e
fix: removed trailing slash at the end of uri (#3626)
alegos27 Aug 31, 2023
09889df
chore(deps): Bump process from 4.2.4 to 5.0.0 in /actions (#3659)
dependabot[bot] Aug 31, 2023
e929b62
chore(deps): Update dart-lang/setup-dart requirement to e58aeb62aef51…
dependabot[bot] Aug 31, 2023
ee5f748
chore(deps): Amplify Android 2.13.0 (#3669)
dnys1 Aug 31, 2023
38e50c9
chore(aft): Custom GitHub actions config (#3628)
dnys1 Aug 31, 2023
4fdc9c8
fix(auth): Custom auth with device tracking, no SRP (#3652)
dnys1 Aug 31, 2023
a1e03ca
fix(auth): Crash with EXC_BAD_ACCESS (#3657)
dnys1 Sep 1, 2023
9edd376
fix(auth): Uncaught Hosted UI cancellation (#3686)
dnys1 Sep 5, 2023
c023570
ci: Consolidate dependabot config (#3668)
dnys1 Sep 5, 2023
3b45430
chore(repo): Clean up workers
Sep 1, 2023
269e3cb
chore(secure_storage_test): Enable lints
Sep 1, 2023
224b022
test(auth): Skip main thread SRP tests on DDC
Sep 1, 2023
8a3a9bc
test(auth): Fix flaky test (#3678)
dnys1 Sep 6, 2023
8f0ba34
test(auth): Prevent eventual consistency issues (#3680)
dnys1 Sep 6, 2023
751ae7a
chore(authenticator_test): Updated Golden tests to run on any screen …
Equartey Sep 8, 2023
a92d20e
ci: Fix dependabot groups (#3712)
dnys1 Sep 8, 2023
e0df32a
test(aft): Fix package selector test (#3720)
dnys1 Sep 8, 2023
47cc5e7
chore(version): Bump version
Sep 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/composite_actions/fetch_backends/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ runs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@04b98b3f9e85f563fb061be8751a0352327246b0 # 3.0.1
with:
unset-current-credentials: true
role-to-assume: ${{ inputs.role-to-assume }}
aws-region: ${{ inputs.aws-region }}
role-duration-seconds: 900
Expand Down
48 changes: 8 additions & 40 deletions .github/composite_actions/launch_android_emulator/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,49 +2,17 @@ name: Launch Android emulator
description: Launches an Android emulator and caches it for further action runs
inputs:
api-level:
description: The Android API level
description: "API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10"
default: "33"
target:
description: The Android image type
description: "target of the system image - default, google_apis, google_apis_playstore, aosp_atd, google_atd, android-wear, android-wear-cn, android-tv or google-tv"
default: google_apis
arch:
description: The CPU architecture
default: x86_64
abi:
description: "ABI of the Android system image - x86, x86_64 or arm64-v8a. Defaults to the host architecture."
# TODO(dnys1): Can this be removed so we can use a separate step?
script:
description: The script to run once the emulator is booted
required: true

description: The script to run once the emulator is booted.
runs:
using: "composite"
steps:
- name: Cache AVD
id: avd-cache
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ inputs.api-level }}-${{ inputs.arch }}-${{ inputs.target }}

- name: Create AVD and generate snapshot
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@50986b1464923454c95e261820bc626f38490ec0 # 2.27.0
with:
api-level: ${{ inputs.api-level }}
target: ${{ inputs.target }}
arch: ${{ inputs.arch }}
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -logcat '*:e *:s'
script: echo "Generated AVD snapshot for caching."

- name: Launch AVD
uses: reactivecircus/android-emulator-runner@50986b1464923454c95e261820bc626f38490ec0 # 2.27.0
with:
api-level: ${{ inputs.api-level }}
target: ${{ inputs.target }}
arch: ${{ inputs.arch }}
# -no-snapshot-save + default options: https://github.com/reactivecircus/android-emulator-runner#configurations
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -logcat '*:e *:s'
# set screen timeout to 1 hour
script: |
adb shell settings put system screen_off_timeout 3600000
${{ inputs.script }}
using: "node16"
main: "dist/index.mjs"
Loading
Loading