Send a new field to determine the analytics level in the initial call. #1664
Workflow file for this run
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: 📚 Library Evolution Compatibility | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Verify | |
runs-on: macos-13-xl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: n1hility/cancel-previous-runs@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Select latest Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '14.3' | |
- name: "xcodebuild clean archive BUILD_LIBRARY_FOR_DISTRIBUTION=YES" | |
run: | | |
xcodebuild -version | |
xcodebuild clean archive -project "${project}" -scheme "${scheme}" -destination 'generic/platform=iOS Simulator' -archivePath "${archivePath}" -skipPackagePluginValidation SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES | |
./Scripts/validate-library-evolution.swift "${archivePath}" "${validationProjectName}" | |
cd ${validationProjectName} | |
xcodebuild clean build -scheme "${validationProjectName}" -destination 'generic/platform=iOS Simulator' | xcpretty --utf --color && exit ${PIPESTATUS[0]} | |
env: | |
project: 'Adyen.xcodeproj' | |
archivePath: 'LibraryEvolutionValidationArchive.xcarchive' | |
scheme: 'AdyenDropIn' | |
validationProjectName: 'LibraryEvolutionValidation' |