-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
2,532 additions
and
1,562 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 |
---|---|---|
@@ -1,33 +1,55 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/build.yml' | ||
- 'Mythic.xcodeproj/**' | ||
- 'Mythic/**' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/build.yml' | ||
- 'Mythic.xcodeproj/**' | ||
- 'Mythic/**' | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- '.github/workflows/build.yml' | ||
- 'Mythic.xcodeproj/**' | ||
- 'Mythic/**' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/build.yml' | ||
- 'Mythic.xcodeproj/**' | ||
- 'Mythic/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
build: | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Debug - List directory contents | ||
run: ls -R | ||
|
||
- name: Debug - Print environment variables | ||
run: env | ||
|
||
- name: Install Command Line Tools for Xcode (if it's not installed) | ||
run: | | ||
if xcode-select --version >/dev/null 2>&1; then | ||
echo "Xcode Command Line Tools is installed, skipping." | ||
else | ||
echo "Xcode Command Line Tools is not installed, installing." | ||
xcode-select --install | ||
fi | ||
echo "Checking Xcode Command Line Tools..." | ||
if xcode-select --version >/dev/null 2>&1; then | ||
echo "Xcode Command Line Tools is installed, skipping." | ||
else | ||
echo "Xcode Command Line Tools is not installed, installing." | ||
xcode-select --install | ||
fi | ||
- name: Debug - Xcode version | ||
run: xcodebuild -version | ||
|
||
- name: Debug - Available Xcode schemes | ||
run: xcodebuild -list -project Mythic.xcodeproj | ||
|
||
- name: Build | ||
run: xcodebuild -scheme Mythic CODE_SIGNING_ALLOWED=NO SWIFTLINT=NO | ||
run: | | ||
echo "Starting build process..." | ||
set -x # Enable command echoing | ||
xcodebuild -scheme Mythic CODE_SIGNING_ALLOWED=NO SWIFTLINT=NO -verbose | ||
set +x # Disable command echoing | ||
- name: Debug - Build artifacts | ||
if: failure() | ||
run: | | ||
echo "Listing build artifacts..." | ||
ls -R ~/Library/Developer/Xcode/DerivedData |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "Engine Icon.png", | ||
"filename" : "Engine-GPTKv2.png", | ||
"idiom" : "universal", | ||
"scale" : "1x" | ||
}, | ||
{ | ||
"filename" : "[email protected]", | ||
"idiom" : "universal", | ||
"scale" : "2x" | ||
}, | ||
{ | ||
"filename" : "[email protected]", | ||
"idiom" : "universal", | ||
"scale" : "3x" | ||
} | ||
|
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.