chore(release): publish packages (#12251) #5
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
name: e2e | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'website/**' | |
- '**/example/**' | |
- '**/flutterfire_ui/**' | |
- '**/cloud_firestore_odm/**' | |
- '**.md' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
- 'website/**' | |
- '**/example/**' | |
- '**/flutterfire_ui/**' | |
- '**/cloud_firestore_odm/**' | |
- '**.md' | |
jobs: | |
android: | |
runs-on: macos-13 | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
working_directory: | |
['tests', 'packages/cloud_firestore/cloud_firestore/example'] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | |
name: Install Node.js 20 | |
with: | |
node-version: '20' | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
name: Gradle Cache | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-v4-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: ${{ runner.os }}-gradle-v4 | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
name: AVD Cache | |
id: avd-cache | |
with: | |
path: | | |
~/.android/avd/* | |
~/.android/adb* | |
key: avd | |
- name: Firebase Emulator Cache | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: ~/.cache/firebase/emulators | |
key: firebase-emulators-v3-${{ github.run_id }} | |
restore-keys: firebase-emulators-v3 | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@dd3c344d731938d2ab2567a261f54a19a68b5f6a | |
with: | |
run-bootstrap: false | |
melos-version: '3.0.1' | |
- name: 'Bootstrap package' | |
run: melos bootstrap --scope tests && melos bootstrap --scope "cloud_firestore*" | |
- name: 'Install Tools' | |
run: | | |
sudo npm i -g firebase-tools | |
- name: Start Firebase Emulator | |
run: sudo chown -R 501:20 "/Users/runner/.npm" && cd ./.github/workflows/scripts && ./start-firebase-emulator.sh | |
- name: Create and start emulator | |
# We use the installed SDK in the macOS image to create and start the emulator | |
run: | | |
echo "List installed packages" | |
$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager --list_installed | |
echo "Installing system image" | |
echo "y" | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager "system-images;android-33;google_apis;x86_64" | |
echo "Creating AVD" | |
echo "no" | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/avdmanager create avd -n test_emulator -k "system-images;android-33;google_apis;x86_64" --force | |
echo "Starting emulator" | |
$ANDROID_SDK_ROOT/emulator/emulator -avd test_emulator -no-audio -no-boot-anim -no-window & | |
adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done; input keyevent 82' | |
- name: 'E2E Tests' | |
working-directory: ${{ matrix.working_directory }} | |
run: | | |
flutter test integration_test/e2e_test.dart --dart-define=CI=true | |
ios: | |
# Dropped down to macos-12 as macos-13 was timing out. This suspected issue:https://github.com/actions/runner-images/issues/8023 | |
runs-on: macos-12 | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
working_directory: | |
['tests', 'packages/cloud_firestore/cloud_firestore/example'] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | |
name: Install Node.js 20 | |
with: | |
node-version: '20' | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: hendrikmuhs/ccache-action@6d1841ec156c39a52b1b23a810da917ab98da1f4 | |
name: Xcode Compile Cache | |
with: | |
key: ${{ runner.os }}-ios-v3 | |
max-size: 700M | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
name: Pods Cache | |
id: pods-cache | |
with: | |
path: tests/ios/Pods | |
key: ${{ runner.os }}-pods-v3-${{ hashFiles('tests/ios/Podfile.lock') }} | |
restore-keys: ${{ runner.os }}-ios-pods-v2 | |
- name: Firebase Emulator Cache | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: ~/.cache/firebase/emulators | |
key: firebase-emulators-v3-${{ github.run_id }} | |
restore-keys: firebase-emulators-v3 | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@dd3c344d731938d2ab2567a261f54a19a68b5f6a | |
with: | |
run-bootstrap: false | |
melos-version: '3.0.1' | |
- name: 'Bootstrap package' | |
run: melos bootstrap --scope tests && melos bootstrap --scope "cloud_firestore*" | |
- name: 'Install Tools' | |
run: | | |
sudo npm i -g firebase-tools | |
- name: 'Build Application' | |
working-directory: ${{ matrix.working_directory }} | |
run: | | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | |
export CCACHE_SLOPPINESS=clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros | |
export CCACHE_FILECLONE=true | |
export CCACHE_DEPEND=true | |
export CCACHE_INODECACHE=true | |
ccache -s | |
flutter build ios --no-codesign --simulator --debug --target=./integration_test/e2e_test.dart --dart-define=CI=true | |
ccache -s | |
- name: Start Firebase Emulator | |
run: sudo chown -R 501:20 "/Users/runner/.npm" && cd ./.github/workflows/scripts && ./start-firebase-emulator.sh | |
- name: 'E2E Tests' | |
working-directory: ${{ matrix.working_directory }} | |
run: | | |
# Boot simulator and wait for System app to be ready. | |
# List of available simulators: https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#installed-simulators | |
SIMULATOR="iPhone 14" | |
xcrun simctl bootstatus "$SIMULATOR" -b | |
xcrun simctl logverbose "$SIMULATOR" enable | |
# Sleep to allow simulator to settle. | |
sleep 15 | |
# Uncomment following line to have simulator logs printed out for debugging purposes. | |
# xcrun simctl spawn booted log stream --predicate 'eventMessage contains "flutter"' & | |
flutter test integration_test/e2e_test.dart -d "$SIMULATOR" --dart-define=CI=true | |
macos: | |
runs-on: macos-13 | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
working_directory: | |
['tests', 'packages/cloud_firestore/cloud_firestore/example'] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | |
name: Install Node.js 20 | |
with: | |
node-version: '20' | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: hendrikmuhs/ccache-action@6d1841ec156c39a52b1b23a810da917ab98da1f4 | |
name: Xcode Compile Cache | |
with: | |
key: ${{ runner.os }}-macos-v2 | |
max-size: 700M | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
name: Pods Cache | |
id: pods-cache | |
with: | |
path: tests/macos/Pods | |
key: ${{ runner.os }}-pods-v2-${{ hashFiles('tests/macos/Podfile.lock') }} | |
restore-keys: ${{ runner.os }}-macos-pods-v1 | |
- name: Cache Firebase Emulator | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: ~/.cache/firebase/emulators | |
key: firebase-emulators-v3-${{ github.run_id }} | |
restore-keys: firebase-emulators-v3 | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@dd3c344d731938d2ab2567a261f54a19a68b5f6a | |
with: | |
run-bootstrap: false | |
melos-version: '3.0.1' | |
- name: 'Bootstrap package' | |
run: melos bootstrap --scope tests && melos bootstrap --scope "cloud_firestore*" | |
- name: 'Install Tools' | |
run: | | |
sudo npm i -g firebase-tools | |
- name: 'Build Application' | |
working-directory: ${{ matrix.working_directory }} | |
run: | | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | |
export CCACHE_SLOPPINESS=clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros | |
export CCACHE_FILECLONE=true | |
export CCACHE_DEPEND=true | |
export CCACHE_INODECACHE=true | |
ccache -s | |
flutter build macos --debug --target=./integration_test/e2e_test.dart --device-id=macos --dart-define=CI=true | |
ccache -s | |
- name: Start Firebase Emulator | |
# Chown the npm cache directory to the runner user to avoid permission issues | |
run: sudo chown -R 501:20 "/Users/runner/.npm" && cd ./.github/workflows/scripts && ./start-firebase-emulator.sh | |
- name: 'E2E Tests' | |
working-directory: ${{ matrix.working_directory }} | |
run: | | |
flutter test \ | |
integration_test/e2e_test.dart \ | |
-d macos \ | |
--dart-define=CI=true | |
web: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
working_directory: | |
['tests', 'packages/cloud_firestore/cloud_firestore/example'] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | |
name: Install Node.js 20 | |
with: | |
node-version: '20' | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@dd3c344d731938d2ab2567a261f54a19a68b5f6a | |
with: | |
run-bootstrap: false | |
melos-version: '3.0.1' | |
- name: 'Bootstrap package' | |
run: melos bootstrap --scope tests && melos bootstrap --scope "cloud_firestore*" | |
- name: 'Install Tools' | |
run: | | |
sudo npm i -g firebase-tools | |
- name: Cache Firebase Emulator | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: ~/.cache/firebase/emulators | |
key: firebase-emulators-v3-${{ github.run_id }} | |
restore-keys: firebase-emulators-v3 | |
- name: Start Firebase Emulator | |
run: cd ./.github/workflows/scripts && ./start-firebase-emulator.sh | |
- name: 'E2E Tests' | |
working-directory: ${{ matrix.working_directory }} | |
# Web devices are not supported for the `flutter test` command yet. As a | |
# workaround we can use the `flutter drive` command. Tracking issue: | |
# https://github.com/flutter/flutter/issues/66264 | |
run: | | |
chromedriver --port=4444 --trace-buffer-size=100000 & | |
flutter drive \ | |
--verbose-system-logs \ | |
-d web-server \ | |
--driver=test_driver/integration_test.dart \ | |
--target=integration_test/e2e_test.dart \ | |
--dart-define=CI=true | |
windows: | |
runs-on: windows-latest | |
timeout-minutes: 45 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 | |
name: Install Node.js 20 | |
with: | |
node-version: "20" | |
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@dd3c344d731938d2ab2567a261f54a19a68b5f6a | |
with: | |
run-bootstrap: false | |
melos-version: '3.0.0' | |
- name: "Bootstrap package" | |
run: melos bootstrap --scope tests && melos bootstrap --scope "cloud_firestore*" | |
- name: "Install Tools" | |
run: | | |
npm install -g firebase-tools | |
- name: Start Firebase Emulator and run tests | |
run: cd ./.github/workflows/scripts && firebase emulators:exec --project flutterfire-e2e-tests "cd ../../../tests && flutter test .\integration_test\e2e_test.dart -d windows" |