Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
3fce6d47
Commit
3fce6d47
authored
Jan 24, 2018
by
Danielle Tomlinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try circleci 2.0
parent
8816d4db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
23 deletions
+34
-23
config.yml
.circleci/config.yml
+34
-0
circle.yml
circle.yml
+0
-23
No files found.
.circleci/config.yml
0 → 100644
View file @
3fce6d47
version
:
2.0
jobs
:
build
:
macos
:
xcode
:
"
9.2.0"
steps
:
-
checkout
-
restore_cache
:
keys
:
-
v1-gems-{{ checksum "Gemfile.lock" }}
-
run
:
name
:
Setup Dependencies
command
:
|
sudo gem update --system
bundle check || bundle install --path .bundle
-
save_cache
:
key
:
v1-gems-{{ checksum "Gemfile.lock" }}
paths
:
-
"
.bundle"
-
run
:
name
:
Fetch CocoaPods Specs
command
:
.circle-scripts/fetch-cocoapods-repo-from-s3.sh
-
run
:
name
:
Setup Git
command
:
|
git config --global user.email "tests@cocoapods.org"
git config --global user.name "CocoaPods Tests"
-
run
:
bundle exec pod env
-
run
:
name
:
Run Examples
command
:
bundle exec rake spec:all
environment
:
COCOAPODS_CI_TASKS
:
EXAMPLES
circle.yml
deleted
100644 → 0
View file @
8816d4db
machine
:
ruby
:
version
:
system
xcode
:
version
:
"
9.2"
dependencies
:
override
:
-
sudo gem update --system
-
bundle check || bundle install --path .bundle
-
.circle-scripts/fetch-cocoapods-repo-from-s3.sh
cache_directories
:
-
.bundle
test
:
pre
:
-
git config --global user.email "tests@cocoapods.org"
-
git config --global user.name "CocoaPods Tests"
-
bundle exec pod env
override
:
-
bundle exec rake spec:all
:
environment
:
COCOAPODS_CI_TASKS
:
EXAMPLES
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment