fix: Added STSS to the Xcode and VS projects #18
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-mac | |
on: [push] | |
jobs: | |
ci: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
run-config: | |
- { scheme: 'ISOBMFF', configuration: 'Debug', project: 'ISOBMFF.xcodeproj', build: 1, analyze: 1, test: 1, info: 1, destination: 'platform=macOS' } | |
- { scheme: 'ISOBMFF', configuration: 'Release', project: 'ISOBMFF.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
- { scheme: 'ISOBMFF-Dump', configuration: 'Debug', project: 'ISOBMFF.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
- { scheme: 'ISOBMFF-Dump', configuration: 'Release', project: 'ISOBMFF.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' } | |
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' ] }} |