Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
45 changes: 45 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build iOS

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Show Xcode version
run: xcodebuild -version

- name: List project
run: |
xcodebuild -project StosDebug.xcodeproj -list

- name: Build
run: |
xcodebuild \
-project StosDebug.xcodeproj \
-scheme StosDebug \
-configuration Release \
-sdk iphoneos \
-derivedDataPath build \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY=""

- name: Create unsigned ipa
run: |
mkdir Payload
cp -R build/Build/Products/Release-iphoneos/*.app Payload/
zip -r StosDebug.ipa Payload

- name: Upload ipa
uses: actions/upload-artifact@v4
with:
name: StosDebug.ipa
path: StosDebug.ipa
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
2 changes: 0 additions & 2 deletions StosDebug.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
scripts/classic_geode.js,
scripts/classic.js,
scripts/universal.js,
"scripts/universal+manic.jitrpl",
);
target = 4E8D91592F76337600F5E970 /* StosDebug */;
};
Expand All @@ -44,7 +43,6 @@
scripts/classic_geode.js,
scripts/classic.js,
scripts/universal.js,
"scripts/universal+manic.jitrpl",
);
};
/* End PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet section */
Expand Down
Binary file removed StosDebug/.DS_Store
Binary file not shown.
Binary file removed StosDebug/Backend/.DS_Store
Binary file not shown.
Binary file removed StosDebug/Backend/Dependencies/.DS_Store
Binary file not shown.
4 changes: 0 additions & 4 deletions StosDebug/Backend/ScriptSupport/Scripts.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ struct Scripts: Equatable {
static let classic = Scripts("classic")
static let classic_geode = Scripts("classic_geode")
static let universal = Scripts("universal")
static let `universal+manic` = Scripts("universal+manic")

static func custom(name: String, url: URL) -> Scripts {
Scripts(name, customURL: url)
Expand All @@ -43,7 +42,6 @@ struct Scripts: Equatable {
}

enum Apps: String, CaseIterable {
case manic
case melonx
case amethyst
case utm
Expand All @@ -54,8 +52,6 @@ struct Scripts: Equatable {

var script: Scripts {
switch self {
case .manic:
return .`universal+manic`
case .utm, .dolphin, .flycast:
return .classic
case .geode:
Expand Down
58 changes: 0 additions & 58 deletions StosDebug/scripts/universal+manic.jitrpl

This file was deleted.