This repository was archived by the owner on Mar 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +362
-31
lines changed
project.xcworkspace/xcshareddata Expand file tree Collapse file tree 6 files changed +362
-31
lines changed Original file line number Diff line number Diff line change
1
+ # iOS CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details
4
+ #
5
+
6
+ # ## KeyboardHelper config file ###
7
+
8
+ version : 2
9
+ jobs :
10
+ build :
11
+
12
+ # Specify the Xcode version to use
13
+ macos :
14
+ xcode : " 9.4.1"
15
+
16
+ steps :
17
+ - checkout
18
+
19
+ # Install CocoaPods
20
+ # - run:
21
+ # name: Install CocoaPods
22
+ # command: pod install
23
+
24
+ # Build the app and run tests
25
+ - run :
26
+ name : Build and run tests
27
+ command : fastlane scan
28
+ environment :
29
+ SCAN_DEVICE : iPhone 6
30
+ SCAN_SCHEME : KeyboardHelper
31
+
32
+ # Collect XML test results data to show in the UI,
33
+ # and save the same XML files under test-results folder
34
+ # in the Artifacts tab
35
+ - store_test_results :
36
+ path : test_output/report.xml
37
+ - store_artifacts :
38
+ path : /tmp/test-results
39
+ destination : scan-test-results
40
+ - store_artifacts :
41
+ path : ~/Library/Logs/scan
42
+ destination : scan-logs
43
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >IDEDidComputeMac32BitWarning </key >
6
+ <true />
7
+ </dict >
8
+ </plist >
Original file line number Diff line number Diff line change 26
26
buildConfiguration = " Debug"
27
27
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = " YES"
30
- codeCoverageEnabled = " NO" >
29
+ shouldUseLaunchSchemeArgsEnv = " YES" >
31
30
<Testables >
32
31
<TestableReference
33
32
skipped = " NO" >
Original file line number Diff line number Diff line change 3
3
4
4
A small (but cool) tool for handling UIKeyboard appearing and disappearing in your view controllers.
5
5
6
- [ ![ Travis ] ( https://img.shields.io/travis /nodes-ios/KeyboardHelper.svg )] ( https://travis-ci.org /nodes-ios/KeyboardHelper )
6
+ [ ![ CircleCI ] ( https://circleci.com/gh /nodes-ios/KeyboardHelper.svg?style=shield )] ( https://circleci.com/gh /nodes-ios/KeyboardHelper )
7
7
[ ![ Codecov] ( https://img.shields.io/codecov/c/github/nodes-ios/KeyboardHelper.svg )] ( https://codecov.io/github/nodes-ios/KeyboardHelper )
8
8
[ ![ Documentation] ( https://img.shields.io/cocoapods/metrics/doc-percent/KeyboardHelper.svg )] ( http://cocoadocs.org/docsets/KeyboardHelper/ )
9
9
[ ![ CocoaPods] ( https://img.shields.io/cocoapods/v/KeyboardHelper.svg )] ( https://cocoapods.org/pods/KeyboardHelper )
You can’t perform that action at this time.
0 commit comments