Skip to content

chore: XSTest update #8

chore: XSTest update

chore: XSTest update #8

Workflow file for this run

name: ci-mac
on: [push]
jobs:
ci:
runs-on: macos-latest
strategy:
matrix:
run-config:
- { scheme: 'ObjectiveCPP Mac Static Library (C++11)', configuration: 'Debug', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP Mac Static Library (C++11)', configuration: 'Release', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP Mac Dynamic Library (C++11)', configuration: 'Debug', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP Mac Dynamic Library (C++11)', configuration: 'Release', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP Mac Framework (C++11)', configuration: 'Debug', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP Mac Framework (C++11)', configuration: 'Release', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'ObjectiveCPP iOS Static Library (C++11)', configuration: 'Debug', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=iOS Simulator,name=iPhone 12' }
- { scheme: 'ObjectiveCPP iOS Static Library (C++11)', configuration: 'Release', project: 'ObjectiveCPP.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=iOS Simulator,name=iPhone 12' }
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- uses: macmade/action-xcodebuild@v1.0.0
- uses: macmade/action-slack@v1.0.0
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
channel: '#ci'
status: ${{ job.status }}
title: ${{ matrix.run-config[ 'scheme' ] }} - ${{ matrix.run-config[ 'configuration' ] }}