chore(sender): sync committed pbxproj MARKETING_VERSION with project.yml #121
Workflow file for this run
This file contains hidden or 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: CI Build Verification | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-sender: | |
| name: Build Sender (macOS 15 - Apple Silicon) | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Tools | |
| run: | | |
| brew install xcodegen | |
| - name: Build Sender App | |
| run: | | |
| cd TargetBridge-Sender | |
| ./scripts/build_targetbridge_sender_app.sh | |
| build-receiver: | |
| name: Build Receiver (${{ matrix.os }} - ${{ matrix.arch }}) | |
| strategy: | |
| matrix: | |
| include: | |
| - os: macos-15-intel | |
| arch: x86_64 | |
| - os: macos-15 | |
| arch: arm64 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Install Dependencies | |
| run: | | |
| brew install ffmpeg sdl2 dylibbundler | |
| - name: Build Receiver App | |
| run: | | |
| cd TargetBridge-Receiver | |
| ./scripts/build_tbreceiver_c_app.sh |