Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit a34eaff

Browse files
authored
Merge pull request #30 from nodes-ios/CircleCI_migration
Circle ci migration
2 parents 424629b + 5b77b1f commit a34eaff

File tree

6 files changed

+362
-31
lines changed

6 files changed

+362
-31
lines changed

.circleci/config.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+

.travis.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>

KeyboardHelper.xcodeproj/xcshareddata/xcschemes/KeyboardHelper.xcscheme

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29-
shouldUseLaunchSchemeArgsEnv = "YES"
30-
codeCoverageEnabled = "NO">
29+
shouldUseLaunchSchemeArgsEnv = "YES">
3130
<Testables>
3231
<TestableReference
3332
skipped = "NO">

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
A small (but cool) tool for handling UIKeyboard appearing and disappearing in your view controllers.
55

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)
77
[![Codecov](https://img.shields.io/codecov/c/github/nodes-ios/KeyboardHelper.svg)](https://codecov.io/github/nodes-ios/KeyboardHelper)
88
[![Documentation](https://img.shields.io/cocoapods/metrics/doc-percent/KeyboardHelper.svg)](http://cocoadocs.org/docsets/KeyboardHelper/)
99
[![CocoaPods](https://img.shields.io/cocoapods/v/KeyboardHelper.svg)](https://cocoapods.org/pods/KeyboardHelper)

0 commit comments

Comments
 (0)