Devops – AlbeBaubles https://albebaubles.com Mobile & IoT Development Wed, 02 Oct 2024 17:06:08 +0000 en hourly 1 https://wordpress.org/?v=6.8.1 https://albebaubles.com/wp-content/uploads/2019/10/cropped-247306-3-32x32.png Devops – AlbeBaubles https://albebaubles.com 32 32 Azure Devops — Available Xcode versions https://albebaubles.com/uncategorized/azure-devops-available-xcode-versions/ Wed, 02 Oct 2024 17:06:07 +0000 https://albebaubles.com/?p=1028 The following pipeline, when executed, will list all available Xcode versions in Azure DevOps.

trigger:
- develop

pool:
  vmImage: 'macos-14'

jobs:
- job: iOS
  steps:
  - task: PowerShell@2
    displayName: Select Xcode Version
    inputs:
      targetType: 'inline'
      script: |
         echo Mac OS version:
         sw_vers -productVersion
         echo Installed Xcode versions:
         ls /Applications | grep 'Xcode'
         echo currently selected xcode:
         xcrun xcode-select --print-path
         echo selecting latest xcode...
         sudo xcode-select -s /Applications/Xcode_16.app
         xcrun xcode-select --print-path
         xcodebuild -version
]]>