Skip to content

Commit c619b65

Browse files
committed
Travis CI support
1 parent e8996ba commit c619b65

File tree

4 files changed

+120
-2
lines changed

4 files changed

+120
-2
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: objective-c
2+
before_script:
3+
- brew update
4+
- brew upgrade xctool || true
5+
script:
6+
- xctool -project WebViewJavascriptBridge.xcodeproj -scheme WebViewJavascriptBridge -configuration Release -sdk iphonesimulator test

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
WebViewJavascriptBridge
22
=======================
33

4+
[![Build Status](https://travis-ci.org/marcuswestin/WebViewJavascriptBridge.svg)](https://travis-ci.org/marcuswestin/WebViewJavascriptBridge)
5+
46
An iOS/OSX bridge for sending messages between Obj-C and JavaScript in UIWebViews/WebViews.
57

68
If you like WebViewJavascriptBridge you may also want to check out [WebViewProxy](https://github.com/marcuswestin/WebViewProxy).

WebViewJavascriptBridge.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
360360
GCC_WARN_UNUSED_FUNCTION = YES;
361361
GCC_WARN_UNUSED_VARIABLE = YES;
362-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
362+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
363363
MTL_ENABLE_DEBUG_INFO = YES;
364364
ONLY_ACTIVE_ARCH = YES;
365365
SDKROOT = iphoneos;
@@ -395,7 +395,7 @@
395395
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
396396
GCC_WARN_UNUSED_FUNCTION = YES;
397397
GCC_WARN_UNUSED_VARIABLE = YES;
398-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
398+
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
399399
MTL_ENABLE_DEBUG_INFO = NO;
400400
SDKROOT = iphoneos;
401401
VALIDATE_PRODUCT = YES;
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0630"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "3D0FE4691AE2886400BB4104"
18+
BuildableName = "libWebViewJavascriptBridge.a"
19+
BlueprintName = "WebViewJavascriptBridge"
20+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
<BuildActionEntry
24+
buildForTesting = "YES"
25+
buildForRunning = "YES"
26+
buildForProfiling = "NO"
27+
buildForArchiving = "NO"
28+
buildForAnalyzing = "YES">
29+
<BuildableReference
30+
BuildableIdentifier = "primary"
31+
BlueprintIdentifier = "3D0FE4741AE2886500BB4104"
32+
BuildableName = "WebViewJavascriptBridgeTests.xctest"
33+
BlueprintName = "WebViewJavascriptBridgeTests"
34+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
35+
</BuildableReference>
36+
</BuildActionEntry>
37+
</BuildActionEntries>
38+
</BuildAction>
39+
<TestAction
40+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
41+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
42+
shouldUseLaunchSchemeArgsEnv = "YES"
43+
buildConfiguration = "Debug">
44+
<Testables>
45+
<TestableReference
46+
skipped = "NO">
47+
<BuildableReference
48+
BuildableIdentifier = "primary"
49+
BlueprintIdentifier = "3D0FE4741AE2886500BB4104"
50+
BuildableName = "WebViewJavascriptBridgeTests.xctest"
51+
BlueprintName = "WebViewJavascriptBridgeTests"
52+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
53+
</BuildableReference>
54+
</TestableReference>
55+
</Testables>
56+
<MacroExpansion>
57+
<BuildableReference
58+
BuildableIdentifier = "primary"
59+
BlueprintIdentifier = "3D0FE4691AE2886400BB4104"
60+
BuildableName = "libWebViewJavascriptBridge.a"
61+
BlueprintName = "WebViewJavascriptBridge"
62+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
63+
</BuildableReference>
64+
</MacroExpansion>
65+
</TestAction>
66+
<LaunchAction
67+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
68+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
69+
launchStyle = "0"
70+
useCustomWorkingDirectory = "NO"
71+
buildConfiguration = "Debug"
72+
ignoresPersistentStateOnLaunch = "NO"
73+
debugDocumentVersioning = "YES"
74+
allowLocationSimulation = "YES">
75+
<MacroExpansion>
76+
<BuildableReference
77+
BuildableIdentifier = "primary"
78+
BlueprintIdentifier = "3D0FE4691AE2886400BB4104"
79+
BuildableName = "libWebViewJavascriptBridge.a"
80+
BlueprintName = "WebViewJavascriptBridge"
81+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
82+
</BuildableReference>
83+
</MacroExpansion>
84+
<AdditionalOptions>
85+
</AdditionalOptions>
86+
</LaunchAction>
87+
<ProfileAction
88+
shouldUseLaunchSchemeArgsEnv = "YES"
89+
savedToolIdentifier = ""
90+
useCustomWorkingDirectory = "NO"
91+
buildConfiguration = "Release"
92+
debugDocumentVersioning = "YES">
93+
<MacroExpansion>
94+
<BuildableReference
95+
BuildableIdentifier = "primary"
96+
BlueprintIdentifier = "3D0FE4691AE2886400BB4104"
97+
BuildableName = "libWebViewJavascriptBridge.a"
98+
BlueprintName = "WebViewJavascriptBridge"
99+
ReferencedContainer = "container:WebViewJavascriptBridge.xcodeproj">
100+
</BuildableReference>
101+
</MacroExpansion>
102+
</ProfileAction>
103+
<AnalyzeAction
104+
buildConfiguration = "Debug">
105+
</AnalyzeAction>
106+
<ArchiveAction
107+
buildConfiguration = "Release"
108+
revealArchiveInOrganizer = "YES">
109+
</ArchiveAction>
110+
</Scheme>

0 commit comments

Comments
 (0)