Skip to content

Commit

Permalink
Add TravisCI configuration. (#9)
Browse files Browse the repository at this point in the history
* Adds TravisCI configuration.

* Ewagegewg


Former-commit-id: a2197db
  • Loading branch information
daithiocrualaoich authored May 14, 2017
1 parent 0acf6ea commit 769dcde
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
*.aci

# Xcode
project.xcworkspace
xcuserdata
UserInterfaceState.xcuserstate

# Build artifacts
*.app
Expand Down
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
language: objective-c
osx_image: xcode7.3
xcode_project: src/corectl.xcodeproj
xcode_scheme: corectl
after_success:
- bash <(curl -s https://codecov.io/bash)
osx_image: xcode8.3
xcode_project: RktMachine.xcodeproj
xcode_scheme: RktMachine
before_install:
# Fix for https://github.com/travis-ci/travis-ci/issues/6307
- gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
- rvm get stable
script:
# http://stackoverflow.com/questions/41786984
- xcodebuild clean build -sdk macosx10.12 -project RktMachine.xcodeproj -scheme RktMachine CODE_SIGNING_REQUIRED=NO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

91 changes: 91 additions & 0 deletions RktMachine.xcodeproj/xcshareddata/xcschemes/RktMachine.xcscheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0830"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "45AE5B941EBE6C9400FA07B0"
BuildableName = "RktMachine.app"
BlueprintName = "RktMachine"
ReferencedContainer = "container:RktMachine.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "45AE5B941EBE6C9400FA07B0"
BuildableName = "RktMachine.app"
BlueprintName = "RktMachine"
ReferencedContainer = "container:RktMachine.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "45AE5B941EBE6C9400FA07B0"
BuildableName = "RktMachine.app"
BlueprintName = "RktMachine"
ReferencedContainer = "container:RktMachine.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "45AE5B941EBE6C9400FA07B0"
BuildableName = "RktMachine.app"
BlueprintName = "RktMachine"
ReferencedContainer = "container:RktMachine.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>RktMachine.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>
<dict>
<key>45AE5B941EBE6C9400FA07B0</key>
<dict>
<key>primary</key>
<true/>
</dict>
</dict>
</dict>
</plist>

0 comments on commit 769dcde

Please sign in to comment.