Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yukiny0811 authored Jan 9, 2024
1 parent 23c5e13 commit bd27ba9
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
DEVELOPER_DIR: /Applications/Xcode.app
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Build macOS
run: xcodebuild -scheme EasyMetalShader build -destination "generic/platform=macOS"
- name: Build iOS
run: xcodebuild -scheme EasyMetalShader build -destination "generic/platform=iOS"
test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Test macOS
run: xcodebuild -scheme EasyMetalShader test -destination "platform=macOS,arch=x86_64"
- name: Test iOS
run: xcodebuild -scheme EasyMetalShader test -destination "name=iPhone 14 Pro"
build-examples:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Build macOS Example
run: cd Examples/ExampleMacOS && xcodebuild -scheme ExampleMacOS build -destination "generic/platform=macOS"
- name: Build iOS Example
run: cd Examples/ExampleiOS && xcodebuild -scheme ExampleiOS build -destination "name=iPhone 14 Pro"

0 comments on commit bd27ba9

Please sign in to comment.