Skip to content
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
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ excluded:
- fastlane/
- DerivedData/
- e2eTests/XCRemoteCacheSample/Pods
- e2eTests/StandaloneSampleApp

attributes:
always_on_same_line:
Expand Down
8 changes: 8 additions & 0 deletions e2eTests/StandaloneSampleApp/.rcinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
cache_addresses:
- 'http://localhost:8080/cache/pods'
primary_repo: '.'
primary_branch: 'e2e-test-branch'
mode: 'consumer'
final_target': XCRemoteCacheSample'
artifact_maximum_age: 0 # do not use local cache in ~/Library/Caches/XCRemoteCache
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//

#import "SomeObjC.h"
6 changes: 6 additions & 0 deletions e2eTests/StandaloneSampleApp/MixedTarget/MixedTarget.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Foundation

@objc
public class SomeClass: NSObject {
@objc public var someEnum: SomeEnum = .default
}
10 changes: 10 additions & 0 deletions e2eTests/StandaloneSampleApp/MixedTarget/SomeObjC.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

typedef NS_ENUM(NSInteger, SomeEnum) {
SomeEnumDefault
};

NS_ASSUME_NONNULL_END
Loading