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

Commit 92f06f4

Browse files
authored
Merge pull request #57 from nodes-ios/CircleCI_migration
Circle ci migration
2 parents fdcb648 + 61b7497 commit 92f06f4

File tree

3 files changed

+42
-32
lines changed

3 files changed

+42
-32
lines changed

.circleci/config.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
### Codemine config file ###
7+
version: 2
8+
jobs:
9+
build:
10+
11+
# Specify the Xcode version to use
12+
macos:
13+
xcode: "9.4.1"
14+
15+
steps:
16+
- checkout
17+
18+
# Install CocoaPods
19+
# - run:
20+
# name: Install CocoaPods
21+
# command: pod install
22+
23+
# Build the app and run tests
24+
- run:
25+
name: Build and run tests
26+
command: fastlane scan
27+
environment:
28+
SCAN_DEVICE: iPhone 6
29+
SCAN_SCHEME: Codemine
30+
31+
# Collect XML test results data to show in the UI,
32+
# and save the same XML files under test-results folder
33+
# in the Artifacts tab
34+
- store_test_results:
35+
path: test_output/report.xml
36+
- store_artifacts:
37+
path: /tmp/test-results
38+
destination: scan-test-results
39+
- store_artifacts:
40+
path: ~/Library/Logs/scan
41+
destination: scan-logs

.travis.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Codemine
22

3-
[![Travis](https://img.shields.io/travis/nodes-ios/Codemine.svg)](https://travis-ci.org/nodes-ios/Codemine)
3+
[![CircleCI](https://circleci.com/gh/nodes-ios/Codemine.svg?style=shield)](https://circleci.com/gh/nodes-ios/Codemine)
44
[![Codecov](https://img.shields.io/codecov/c/github/nodes-ios/Codemine.svg)](https://codecov.io/github/nodes-ios/Codemine)
55
[![CocoaPods](https://img.shields.io/cocoapods/v/Codemine.svg)](https://cocoapods.org/pods/Codemine)
66
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)

0 commit comments

Comments
 (0)