Skip to content

Commit

Permalink
chore: GitHub actions + sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Mar 5, 2024
1 parent a7ff893 commit fb3d373
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: macmade
26 changes: 26 additions & 0 deletions .github/workflows/ci-mac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci-mac
on: [push]
jobs:
ci:
runs-on: macos-latest
strategy:
matrix:
run-config:
- { scheme: 'MetaCopy', configuration: 'Debug', project: 'MetaCopy.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
- { scheme: 'MetaCopy', configuration: 'Release', project: 'MetaCopy.xcodeproj', build: 1, analyze: 1, test: 0, info: 1, destination: 'platform=macOS' }
steps:

- uses: actions/checkout@v1
with:
submodules: 'recursive'

- uses: macmade/[email protected]

- uses: macmade/[email protected]
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' ] }}

0 comments on commit fb3d373

Please sign in to comment.