Skip to content

Commit

Permalink
Use XcodeGen
Browse files Browse the repository at this point in the history
  • Loading branch information
tcamin committed Dec 29, 2022
1 parent a896950 commit 81b6e22
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use_frameworks!
platform :ios, '12.0'
platform :ios, '15.0'

target 'SBTUITestTunnelHost_Example' do
target 'Example' do
end

target 'SBTUITestTunnelHost_ExampleUITests' do
target 'UITests' do
pod 'SBTUITestTunnelHost', :path => '../'
end
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- SBTUITestTunnelHost (0.5.0)
- SBTUITestTunnelHost (2.0.0)

DEPENDENCIES:
- SBTUITestTunnelHost (from `../`)
Expand All @@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
SBTUITestTunnelHost: 683cef8fbf9a12d0bb3e13f78b6d8b0aa7708c97
SBTUITestTunnelHost: 61b22376c8f6232440ac6cde330a4fc8746e092e

PODFILE CHECKSUM: 7e208d3af5cd5448e350a53a2a05e3ccdd74b16b
PODFILE CHECKSUM: 814a29fa0fd16a3c0594d87c72a44da4dc5af1db

COCOAPODS: 1.11.2
COCOAPODS: 1.11.3
28 changes: 28 additions & 0 deletions Example/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: SBTUITestTunnelHost
options:
bundleIdPrefix: com.subito
postGenCommand: "pod install; xed ."
targets:
Example:
type: application
platform: iOS
deploymentTarget: 15.0
settings:
base:
INFOPLIST_FILE: "Sources/SBTUITestTunnelHost-Info.plist"
sources:
- path: Sources
scheme:
gatherCoverageData: true
testTargets:
- UITests
UITests:
type: bundle.ui-testing
platform: iOS
settings:
base:
INFOPLIST_FILE: "UITests/Info.plist"
sources:
- UITests
dependencies:
- target: Example
4 changes: 3 additions & 1 deletion SBTUITunnelHostServer/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use_frameworks!

target 'SBTUITunnelHostServer' do
platform :macos, 11.0

target 'SBTUITestTunnelServer' do
pod 'GCDWebServer'
end
8 changes: 6 additions & 2 deletions SBTUITunnelHostServer/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ PODS:
DEPENDENCIES:
- GCDWebServer

SPEC REPOS:
trunk:
- GCDWebServer

SPEC CHECKSUMS:
GCDWebServer: 2a375ec42839a41d7187d04e5b688d32fa5c4cd5

PODFILE CHECKSUM: 2af66f6b48b1d0f1fe309ffb028aeb79aa347aff
PODFILE CHECKSUM: 1698c64118fbd33edae11f15d05fd2bebefe56b2

COCOAPODS: 1.0.0
COCOAPODS: 1.11.3
14 changes: 14 additions & 0 deletions SBTUITunnelHostServer/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: SBTUITestTunnelServer
options:
bundleIdPrefix: com.subito
postGenCommand: "pod install"
targets:
SBTUITestTunnelServer:
type: application
platform: macOS
deploymentTarget: 11.0
settings:
base:
INFOPLIST_FILE: "Sources/Info.plist"
sources:
- path: Sources

0 comments on commit 81b6e22

Please sign in to comment.