Skip to content

Updating Pangle iOS adapter version to 7.6.0.6.0 in the CHANGELOG #54

Updating Pangle iOS adapter version to 7.6.0.6.0 in the CHANGELOG

Updating Pangle iOS adapter version to 7.6.0.6.0 in the CHANGELOG #54

Workflow file for this run

name: example
# Step 1: Build on pull-requests or pushes to main
on:
pull_request:
paths:
- "example/**"
- ".github/workflows/example.yaml"
push:
branches: [ "main" ]
# Step 2: Build example app
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Clone Repo
uses: actions/checkout@v4
# Available Xcode versions:
# https://github.com/actions/runner-images/blob/main/images/macos/toolsets/toolset-15.json
- name: Select Xcode version
run: |
sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
echo "Selected Xcode version:"
/usr/bin/xcodebuild -version
- name: Update & Install Pods for Mediation Example
run: |
cd ./example
export BUILD_SNIPPETS=1
pod repo update
pod install
- name: Install xcpretty
run: sudo gem install xcpretty
- name: Build Mediation MediationExample Project Scheme
run: |
cd ./example
ls
xcodebuild clean build analyze -workspace MediationExample.xcworkspace -scheme "MediationExample" -sdk iphonesimulator -arch x86_64 | xcpretty && exit ${PIPESTATUS[0]}