-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add cargo run -- export --target ios add cargo run -- run --target ios add iOS ci * [REVERT] only iOS ci * fix * format and split build and run * test * add target * fix presets * fix paths * fix ios * test * add code signing * debug * test * w * test * w * test * fixx * FIX * export project only * fixes * restore ci * fmt * fix android
- Loading branch information
Showing
12 changed files
with
590 additions
and
234 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,48 @@ | ||
name: 🍏 iOS | ||
on: | ||
workflow_call: | ||
|
||
concurrency: | ||
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-ios | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build iOS | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-14-xlarge] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.77.2 | ||
override: true | ||
target: aarch64-apple-ios | ||
|
||
# Dependencies section | ||
- name: Install dependencies | ||
uses: ./.github/actions/install-deps | ||
|
||
# Build section | ||
- name: Cargo install | ||
run: cargo run -- install --platforms ios | ||
|
||
- name: Build | ||
run: cargo run -- build --release --target ios | ||
|
||
- name: Import Assets | ||
uses: ./.github/actions/import-assets | ||
|
||
- name: Export | ||
run: cargo run -- export --target ios | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: decentraland-godot-ios | ||
path: | | ||
exports/**/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,7 @@ | |
"command": "run", | ||
"args": [ | ||
"--", | ||
"run", | ||
"--only-build" | ||
"build", | ||
], | ||
"problemMatcher": [ | ||
"$rustc" | ||
|
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.