Skip to content

Commit 56d4065

Browse files
committed
2.0.1
1 parent ee6a841 commit 56d4065

File tree

4 files changed

+33
-75
lines changed

4 files changed

+33
-75
lines changed

.github/workflows/swift.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will build a Swift project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3+
4+
name: Build
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
build:
14+
runs-on: macos-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Set up Xcode version
18+
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
19+
- name: Show available destinations
20+
run: xcodebuild -scheme Ignition -showdestinations
21+
- name: Build for macOS
22+
run: xcodebuild -scheme Ignition -destination 'platform=macOS' build
23+
- name: Build for Catalyst
24+
run: xcodebuild -scheme Ignition -destination 'platform=macOS,variant=Mac Catalyst' build
25+
- name: Build for iOS
26+
run: xcodebuild -scheme Ignition -destination 'platform=iOS Simulator,name=iPhone 16' build
27+
- name: Build for watchOS
28+
run: xcodebuild -scheme Ignition -destination 'platform=watchOS Simulator,name=Apple Watch Ultra 2 (49mm)' build
29+
- name: Build for tvOS
30+
run: xcodebuild -scheme Ignition -destination 'platform=tvOS Simulator,name=Apple TV 4K (3rd generation)' build
31+
- name: Build for visionOS
32+
run: xcodebuild -scheme Ignition -destination 'platform=visionOS Simulator,name=Apple Vision Pro' build

.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/Ignition.xcscheme

Lines changed: 0 additions & 66 deletions
This file was deleted.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
),
2020
],
2121
dependencies: [
22-
.package(url: "https://github.com/nathantannar4/Engine", from: "2.0.4"),
22+
.package(url: "https://github.com/nathantannar4/Engine", from: "2.1.1"),
2323
],
2424
targets: [
2525
.target(

0 commit comments

Comments
 (0)