Skip to content

Commit 5df7f7b

Browse files
committed
move signing into action that downloads emulator
1 parent 1d5c0c1 commit 5df7f7b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/dargon2_flutter_tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,18 @@ jobs:
5959
mv ../../dargon2_flutter_desktop/pubspec.test.yaml ../../dargon2_flutter_desktop/pubspec.yaml
6060
mv ../../dargon2_flutter_platform_interface/pubspec.test.yaml ../../dargon2_flutter_platform_interface/pubspec.yaml
6161
mv ../../../dargon2_core/pubspec.test.yaml ../../../dargon2_core/pubspec.yaml
62-
- name: Re-sign qemu
63-
run: |
64-
ls /Users/runner/Library/Android/sdk/emulator/qemu/
65-
codesign -s - --entitlements ../../dargon2_flutter_mobile/Android/qemu-entitlements.xml --force /Users/runner/Library/Android/sdk/emulator/qemu/darwin-aarch64/qemu-system-aarch64-headless
66-
codesign -s - --entitlements ../../dargon2_flutter_mobile/Android/qemu-entitlements.xml --force /Users/runner/Library/Android/sdk/emulator/qemu-img
6762
- name: Run Integration Tests
6863
uses: reactivecircus/[email protected]
6964
with:
7065
api-level: 33
7166
target: google_apis
7267
arch: arm64-v8a
7368
working-directory: dargon2_flutter/dargon2_flutter/example
74-
script: flutter test integration_test/
69+
script: |
70+
ls /Users/runner/Library/Android/sdk/emulator/qemu/
71+
codesign -s - --entitlements ../../dargon2_flutter_mobile/Android/qemu-entitlements.xml --force /Users/runner/Library/Android/sdk/emulator/qemu/darwin-aarch64/qemu-system-aarch64-headless
72+
# codesign -s - --entitlements ../../dargon2_flutter_mobile/Android/qemu-entitlements.xml --force /Users/runner/Library/Android/sdk/emulator/qemu-img
73+
flutter test integration_test/
7574
7675
# test_ios:
7776
# runs-on: macos-14

0 commit comments

Comments
 (0)