-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
145 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
name: test ios simulator webview | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 */24 * * *' | ||
|
||
jobs: | ||
run_tests: | ||
name: Flutter ${{ matrix.flutter_version }} webview on ${{ matrix.device_model }} (${{ matrix.os_version }}) simulator | ||
runs-on: macos-latest | ||
timeout-minutes: 40 | ||
outputs: | ||
SLACK_MESSAGE_TITLE: Flutter ${{ matrix.flutter_version }} on ${{ matrix.os }} ${{ matrix.os_version }} simulator | ||
TESTS_EXIT_CODE: ${{ steps.tests_step.outputs.TESTS_EXIT_CODE }} | ||
FAILURE_STATUS: ${{ steps.status_step.outputs.FAILURE_STATUS }} | ||
ERROR_STATUS: ${{ steps.status_step.outputs.ERROR_STATUS }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
flutter_version: ['3.13.x'] | ||
device_model: [iPhone 14] | ||
os: [iOS] | ||
os_version: ['16.2'] | ||
|
||
defaults: | ||
run: | ||
working-directory: packages/patrol/example | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: ${{ matrix.flutter_version }} | ||
|
||
- name: Preload Flutter artifacts | ||
run: flutter precache | ||
|
||
- name: Set up Patrol CLI | ||
working-directory: packages/patrol_cli | ||
run: dart pub global activate --source path . && patrol | ||
|
||
- name: Start iOS simulator | ||
uses: futureware-tech/simulator-action@v2 | ||
with: | ||
model: ${{ matrix.device_model }} | ||
os: ${{ matrix.os }} | ||
os_version: ${{ matrix.os_version }} | ||
erase_before_boot: true | ||
shutdown_after_job: true | ||
|
||
- name: Set tests to include | ||
run: | | ||
TESTS_TO_INCLUDE="webview_hackernews_test,\ | ||
webview_leancode_test,\ | ||
webview_stackoverflow_test" | ||
target_paths="" | ||
for target in $(echo $TESTS_TO_INCLUDE | tr ',' '\n'); do | ||
target_paths+="integration_test/${target}.dart," | ||
done | ||
echo "INCLUDED_TESTS=$target_paths" >> "$GITHUB_ENV" | ||
- name: Run tests | ||
id: tests_step | ||
run: | | ||
xcrun simctl io booted recordVideo --codec=h264 "${{ matrix.device_model }}.mp4" & | ||
recordingpid="$!" | ||
xcrun simctl spawn booted log stream --type log --color none > all_simulator_logs.txt & | ||
logpid="$!" | ||
sleep 10 # See https://github.com/leancodepl/patrol/issues/1282 | ||
TESTS_EXIT_CODE=0 | ||
patrol test --target ${{ env.INCLUDED_TESTS }} --verbose || TESTS_EXIT_CODE=$? | ||
kill -SIGINT $recordingpid | ||
kill -SIGINT $logpid | ||
echo "TESTS_EXIT_CODE=$TESTS_EXIT_CODE" >> "$GITHUB_OUTPUT" | ||
exit $TESTS_EXIT_CODE | ||
- name: Check if something went wrong | ||
id: status_step | ||
if: always() | ||
run: > | ||
if [ -z ${{ steps.tests_step.outputs.TESTS_EXIT_CODE }} ]; then | ||
echo "ERROR_STATUS=error" >> "$GITHUB_OUTPUT"; | ||
elif [ ! ${{ steps.tests_step.outputs.TESTS_EXIT_CODE }} == 0 ]; then | ||
echo "FAILURE_STATUS=failure" >> "$GITHUB_OUTPUT"; | ||
fi; | ||
- name: Find xcresult path | ||
if: ${{ (failure() || success()) && contains(fromJson('["success", "failure"]'), steps.tests_step.conclusion) }} | ||
run: | | ||
brew install coreutils # to provide realpath binary | ||
echo "XCRESULT_PATH=$(realpath build/ios_results_*.xcresult)" >> $GITHUB_ENV | ||
- name: Publish test report to summary | ||
if: ${{ (failure() || success()) && contains(fromJson('["success", "failure"]'), steps.tests_step.conclusion) }} | ||
uses: kishikawakatsumi/xcresulttool@v1 | ||
with: | ||
title: Patrol tests on ${{ matrix.device_model }} | ||
upload-bundles: never | ||
path: | | ||
${{ env.XCRESULT_PATH }} | ||
- name: Upload XCRESULT test result to artifacts | ||
if: ${{ (failure() || success()) && contains(fromJson('["success", "failure"]'), steps.tests_step.conclusion) }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Test result from ${{ matrix.device_model }}.xcresult | ||
path: ${{ env.XCRESULT_PATH }} | ||
|
||
- name: Upload simulator logs to artifacts | ||
if: ${{ (failure() || success()) && contains(fromJson('["success", "failure"]'), steps.tests_step.conclusion) }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Logs from ${{ matrix.device_model }} | ||
path: | | ||
${{ github.workspace }}/packages/patrol/example/all_simulator_logs.txt | ||
- name: Upload captured video to artifacts | ||
if: ${{ (failure() || success()) && contains(fromJson('["success", "failure"]'), steps.tests_step.conclusion) }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Captured video from ${{ matrix.device_model }}.mp4 | ||
path: ${{ github.workspace }}/packages/patrol/example/${{ matrix.device_model }}.mp4 | ||
|
||
call_send_slack_message: | ||
name: Notify on Slack | ||
uses: ./.github/workflows/send-slack-message.yaml | ||
needs: run_tests | ||
if: always() | ||
with: | ||
TESTS_EXIT_CODE: ${{ needs.run_tests.outputs.TESTS_EXIT_CODE }} | ||
FAILURE_STATUS: ${{ needs.run_tests.outputs.FAILURE_STATUS }} | ||
ERROR_STATUS: ${{ needs.run_tests.outputs.ERROR_STATUS }} | ||
SLACK_MESSAGE_TITLE: ${{ needs.run_tests.outputs.SLACK_MESSAGE_TITLE }} | ||
secrets: inherit |
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