-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add @dgovil support for iOS and visionOS imaging.
* Also setup CI workflows to build and bundle on iOS and visionOS. Signed-off-by: furby™ <devs@wabi.foundation>
- Loading branch information
Showing
19 changed files
with
215 additions
and
59 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Swift (iOS 18) | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Swift ${{ matrix.swift }} on iOS | ||
strategy: | ||
matrix: | ||
os: [self-hosted] | ||
swift: ["5.10"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 📦 Build | ||
run: swift bundler bundle -c release -p iOSSimulator UsdView |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Swift (visionOS 2) | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Swift ${{ matrix.swift }} on visionOS | ||
strategy: | ||
matrix: | ||
os: [self-hosted] | ||
swift: ["5.10"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 📦 Build | ||
run: swift bundler bundle -c release -p visionOSSimulator UsdView |
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
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
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
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
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
Oops, something went wrong.