Blog

Xcode 16 Beta Now Available

Long Hoang avatar

David Chavez

Published on Jun 19, 2024 ยท macOS, Actions, Runners

The latest Xcode 16 beta is now available in Blaze allowing you to test your apps and prepare for the upcoming OS release. We'll be updating the Xcode 16 beta as new versions are released, so you can stay up to date with the latest features and improvements.

To use it, use our macos-14 runner and use the xcodes tool to set the Xcode version to the Xcode 16 beta. Here's an example workflow:

  jobs:
  xcode-16:
    runs-on: blaze/macos-14
    steps:
    - uses: actions/checkout@v4
    - name: Build and test
      run: |
        sudo xcodes select 16.0
        xcodebuild build -project blaze.xcodeproj -scheme blaze -destination 'platform=iOS Simulator,name=iPhone 15 Pro'