Sync End-to-End tests #163
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: Sync End-to-End tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 5 * * *' # run at 5 AM UTC | |
jobs: | |
sync-end-to-end-tests: | |
name: Sync End-to-End Tests | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
fail-fast: false | |
matrix: | |
runner: [macos-13-xlarge, macos-14-xlarge] | |
timeout-minutes: 60 | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set cache key hash | |
run: | | |
has_only_tags=$(jq '[ .pins[].state | has("version") ] | all' DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved) | |
if [[ "$has_only_tags" == "true" ]]; then | |
echo "cache_key_hash=${{ hashFiles('DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }}" >> $GITHUB_ENV | |
else | |
echo "Package.resolved contains dependencies specified by branch or commit, skipping cache." | |
fi | |
- name: Cache SPM | |
if: env.cache_key_hash | |
uses: actions/cache@v4 | |
with: | |
path: DerivedData/SourcePackages | |
key: ${{ runner.os }}-spm-${{ env.cache_key_hash }} | |
restore-keys: | | |
${{ runner.os }}-spm- | |
- name: Install Apple Developer ID Application certificate | |
uses: ./.github/actions/install-certs-and-profiles | |
with: | |
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} | |
P12_PASSWORD: ${{ secrets.P12_PASSWORD }} | |
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | |
REVIEW_PROVISION_PROFILE_BASE64: ${{ secrets.REVIEW_PROVISION_PROFILE_BASE64 }} | |
RELEASE_PROVISION_PROFILE_BASE64: ${{ secrets.RELEASE_PROVISION_PROFILE_BASE64 }} | |
DBP_AGENT_RELEASE_PROVISION_PROFILE_BASE64: ${{ secrets.DBP_AGENT_RELEASE_PROVISION_PROFILE_BASE64 }} | |
DBP_AGENT_REVIEW_PROVISION_PROFILE_BASE64: ${{ secrets.DBP_AGENT_REVIEW_PROVISION_PROFILE_BASE64 }} | |
NETP_SYSEX_RELEASE_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_SYSEX_RELEASE_PROVISION_PROFILE_BASE64_V2 }} | |
NETP_SYSEX_REVIEW_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_SYSEX_REVIEW_PROVISION_PROFILE_BASE64_V2 }} | |
NETP_AGENT_RELEASE_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_AGENT_RELEASE_PROVISION_PROFILE_BASE64_V2 }} | |
NETP_AGENT_REVIEW_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_AGENT_REVIEW_PROVISION_PROFILE_BASE64_V2 }} | |
NETP_NOTIFICATIONS_RELEASE_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_NOTIFICATIONS_RELEASE_PROVISION_PROFILE_BASE64 }} | |
NETP_NOTIFICATIONS_REVIEW_PROVISION_PROFILE_BASE64: ${{ secrets.NETP_NOTIFICATIONS_REVIEW_PROVISION_PROFILE_BASE64 }} | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_$(<.xcode-version).app/Contents/Developer | |
- name: Create test account for Sync and return the recovery code | |
uses: duckduckgo/sync_crypto/action@main | |
id: sync-recovery-code | |
with: | |
debug: true | |
- name: Build Sync e2e tests | |
run: | | |
set -o pipefail && xcodebuild build-for-testing \ | |
-scheme "Sync End-to-End UI Tests" \ | |
-configuration Review \ | |
-derivedDataPath DerivedData \ | |
-skipPackagePluginValidation \ | |
-skipMacroValidation \ | |
| tee xcodebuild.log \ | |
| xcbeautify | |
- name: Run UI Tests | |
env: | |
CODE: ${{ steps.sync-recovery-code.outputs.recovery-code }} | |
run: | | |
defaults write com.duckduckgo.macos.browser.review sync.environment Development | |
defaults write com.duckduckgo.macos.browser.review moveToApplicationsFolderAlertSuppress 1 | |
set -o pipefail && xcodebuild test-without-building \ | |
-scheme "Sync End-to-End UI Tests" \ | |
-configuration Review \ | |
-derivedDataPath DerivedData \ | |
-skipPackagePluginValidation \ | |
-skipMacroValidation \ | |
-test-iterations 2 \ | |
-retry-tests-on-failure \ | |
| tee -a xcodebuild.log \ | |
| tee ui-tests.log | |
- name: Prepare test report | |
if: always() | |
run: | | |
xcbeautify --report junit --report-path . --junit-report-filename ui-tests.xml < ui-tests.log | |
- name: Publish tests report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: "Test Report ${{ matrix.runner }}" | |
report_paths: ui-tests.xml | |
- name: Upload logs when workflow failed | |
uses: actions/upload-artifact@v4 | |
if: failure() || cancelled() | |
with: | |
name: "BuildLogs ${{ matrix.runner }}" | |
path: | | |
xcodebuild.log | |
DerivedData/Logs/Test/*.xcresult | |
~/Library/Logs/DiagnosticReports/* | |
retention-days: 7 | |
notify-failure: | |
name: Notify on failure | |
if: ${{ always() && github.event_name == 'schedule' && (needs.sync-end-to-end-tests.result == 'failure' || needs.sync-end-to-end-tests.result == 'cancelled') }} | |
needs: [sync-end-to-end-tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Asana task when workflow failed | |
uses: duckduckgo/[email protected] | |
with: | |
action: create-asana-task | |
asana-pat: ${{ secrets.ASANA_ACCESS_TOKEN }} | |
asana-project: ${{ vars.MACOS_APP_DEVELOPMENT_ASANA_PROJECT_ID }} | |
asana-task-name: GH Workflow Failure - Sync End-to-End Tests | |
asana-task-description: The Sync end-to-end workflow has failed. See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} |