Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug test workflow #5

Merged
merged 1 commit into from
Feb 4, 2025
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test
name: Run xcodebuild test

on: workflow_dispatch
on:
push:
branches-ignore:
- website

jobs:
build:
Expand Down Expand Up @@ -48,6 +51,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: test.xcresult
name: test.xcresult

- name: Clean up keychain
if: ${{ always() }}
Expand Down
12 changes: 6 additions & 6 deletions ReviewCount.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,15 @@
DEVELOPMENT_TEAM = A5VF6CDK3T;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
MACOSX_DEPLOYMENT_TARGET = 15.2;
MACOSX_DEPLOYMENT_TARGET = 14.6;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = net.slowscan.ReviewCountTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SUPPORTED_PLATFORMS = macosx;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReviewCount.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ReviewCount";
XROS_DEPLOYMENT_TARGET = 2.2;
};
Expand All @@ -283,15 +283,15 @@
DEVELOPMENT_TEAM = A5VF6CDK3T;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
MACOSX_DEPLOYMENT_TARGET = 15.2;
MACOSX_DEPLOYMENT_TARGET = 14.6;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = net.slowscan.ReviewCountTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SUPPORTED_PLATFORMS = macosx;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReviewCount.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ReviewCount";
XROS_DEPLOYMENT_TARGET = 2.2;
};
Expand Down