Add visionOS support #21
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: CocoaPods Lint | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: macos-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - platform: iOS | |
# config: "" | |
# - platform: iOS | |
# config: "--use-libraries" | |
# - platform: iOS | |
# config: "--use-libraries --use-modular-headers" | |
# - platform: iOS | |
# config: "--use-static-frameworks" | |
# - platform: macOS | |
# config: "" | |
# - platform: tvOS | |
# config: "" | |
# - platform: watchOS | |
# config: "" | |
- platform: visionOS | |
config: "" | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
- name: Install CocoaPods | |
run: sudo gem install cocoapods | |
- name: Create visionOS Simulator | |
if: matrix.platform == 'visionOS' | |
shell: bash | |
run: | | |
xcrun simctl list devices | |
xcrun simctl list runtimes | |
VISION_OS_DEVICE_TYPE='com.apple.CoreSimulator.SimDeviceType.Apple-Vision-Pro' | |
VISION_OS_RUNTIME=$(xcrun simctl list runtimes | grep 'visionOS' | awk '{ print $7 }' | head -n 1) | |
xcrun simctl create AVP_SIM "$VISION_OS_DEVICE_TYPE" "$VISION_OS_RUNTIME" | |
- name: Lint Podspec | |
id: lint | |
run: | | |
validation_dir=$(mktemp -d) | |
echo "validation_dir=${validation_dir}" >> $GITHUB_OUTPUT | |
pod lib lint --verbose --platforms=${{ matrix.platform }} ${{ matrix.config }} --no-clean --validation-dir="${validation_dir}" | |
shell: bash | |
- name: Upload Workspace Artifact | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: workspace-${{ matrix.platform }}${{ matrix.config }} | |
path: ${{ steps.lint.outputs.validation_dir }} |