Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rudrankriyam authored Nov 5, 2024
1 parent 3552aba commit d77e14f
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Build and Test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test-package:
name: Test AgniKit Package
runs-on: macos-15

steps:
- uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.0.app

- name: Build Package
run: swift build -v

- name: Run Package Tests
run: swift test -v
env:
AGNI_API_KEY: ${{ secrets.AGNI_API_KEY }}

test-app:
name: Test Agni iOS App
runs-on: macos-14

steps:
- uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.0.app

- name: Build iOS App
run: |
xcodebuild clean build \
-project Agni/Agni.xcodeproj \
-scheme Agni \
-destination "platform=iOS Simulator,name=iPhone 15 Pro,OS=18.0" \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Build macOS App
run: |
xcodebuild clean build \
-project Agni/Agni.xcodeproj \
-scheme Agni \
-destination "platform=macOS" \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Build visionOS App
run: |
xcodebuild clean build \
-project Agni/Agni.xcodeproj \
-scheme Agni \
-destination "platform=visionOS Simulator,name=Apple Vision Pro" \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO

0 comments on commit d77e14f

Please sign in to comment.