This repository has been archived by the owner on May 30, 2024. It is now read-only.
Merge branch 'macos-appkit-with-nsui' of github.com:martindufort/Pill… #5
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: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'README.md' | ||
- 'CODE_OF_CONDUCT.md' | ||
- 'CONTRIBUTING.md' | ||
- 'LICENSE' | ||
- 'SECURITY.md' | ||
- 'ios.yml' | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: macOS-latest | ||
strategy: | ||
matrix: | ||
destination: | ||
- "platform=macOS" | ||
- "platform=macOS,variant=Mac Catalyst" | ||
- "platform=iOS Simulator,name=iPhone 11" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install XCBeautify | ||
run: brew install xcbeautify | ||
- name: Show buildable schemes | ||
run: xcodebuild -list | ||
- name: Set Default Scheme | ||
run: | | ||
scheme_list=$(xcodebuild -list -json | tr -d "\n") | ||
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]") | ||
echo $default | cat >default | ||
echo Using default scheme: $default | ||
- name: Test platform ${{ matrix.destination }} | ||
env: | ||
scheme: ${{ 'default' }} | ||
run: | | ||
if [ $scheme = default ]; then scheme=$(cat default); fi | ||
set -o pipefail && xcodebuild -scheme "$scheme" -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions |