Skip to content

chore: Code signing fixes #43

chore: Code signing fixes

chore: Code signing fixes #43

Workflow file for this run

name: ci-mac
on: [push]
jobs:
ci:
runs-on: macos-latest
strategy:
matrix:
run-config:
- { scheme: 'CF++ Mac Static Library', configuration: 'Debug', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ Mac Static Library', configuration: 'Release', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ Mac Dynamic Library', configuration: 'Debug', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ Mac Dynamic Library', configuration: 'Release', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ Mac Framework', configuration: 'Debug', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ Mac Framework', configuration: 'Release', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'CF++ iOS Static Library', configuration: 'Debug', project: 'CoreFoundation++.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=iOS Simulator,name=iPhone 12' }
- { scheme: 'CF++ iOS Static Library', configuration: 'Release', project: 'CoreFoundation++.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' ] }}