Add interface for and implementations of a generic performance logger (CPU and OpenGL) #1264
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: ios | |
env: | |
XCODE_VERSION: 'Xcode_16.0' | |
on: | |
pull_request: | |
branches: [ main, develop, release/** ] | |
jobs: | |
build: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Switch to Xcode ${{ env.XCODE_VERSION }} | |
run: sudo xcode-select --switch /Applications/${{ env.XCODE_VERSION }}.app | |
- name: Build | |
run: xcodebuild -scheme MapCore -destination 'platform=iOS Simulator,OS=18.0,name=iPhone 16 Pro' |