- CircleCI update

Took 10 minutes
This commit is contained in:
2023-03-13 22:49:57 +00:00
parent 4b0db6cd19
commit 0257239057

View File

@@ -37,17 +37,21 @@ jobs:
# The next step will run the unit tests # The next step will run the unit tests
- android/run-tests: - android/run-tests:
test-command: ./gradlew testDriverDebugUnitTest --continue test-command: ./gradlew testDriverDebugUnitTest --continue
# Then start the firebase emulators for the Instrumentation tests! # Install Firebase tools needed for firebase emulator
- run: - run:
name: Setup Firebase Emulators name: Install firebase tools
command: | command: |
curl -sL firebase.tools | bash curl -sL firebase.tools | bash
# Then start firebase emulator in the background
- run:
name: Start firebase emulator
command: |
firebase emulators:start firebase emulators:start
background: true
# Then start the emulator and run the Instrumentation tests! # Then start the emulator and run the Instrumentation tests!
- android/start-emulator-and-run-tests: - android/start-emulator-and-run-tests:
test-command: ./gradlew connectedDebugAndroidTest test-command: ./gradlew connectedDebugAndroidTest
system-image: system-images;android-25;google_apis;x86 system-image: system-images;android-25;google_apis;x86
# And finally run the release build # And finally run the release build
# - run: # - run:
# name: Assemble release build # name: Assemble release build