Commit 8aef30fd authored by Danielle Tomlinson's avatar Danielle Tomlinson

Hacks

parent 577eb201
...@@ -2,7 +2,7 @@ version: 2.0 ...@@ -2,7 +2,7 @@ version: 2.0
refrences: refrences:
cache_key: &bundle_cache_key cache_key: &bundle_cache_key
v3-gems-{{ checksum "Gemfile.lock" }}-{{ arch }} v4-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
steps: &steps steps: &steps
steps: steps:
- checkout - checkout
...@@ -35,18 +35,22 @@ refrences: ...@@ -35,18 +35,22 @@ refrences:
jobs: jobs:
linux-cache: linux-cache:
docker: docker:
- image: ruby:2.4 - image: circleci/ruby:2.4
environment:
BUNDLE_PATH: ''
BUNDLE_BIN: ''
BUNDLE_APP_CONFIG: ''
working_directory: /cocoapods working_directory: /cocoapods
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- *bundle_cache_key - *bundle_cache_key
- run: bundle check || bundle install - run: bundle check || bundle install --path .bundle
- save_cache: - save_cache:
key: *bundle_cache_key key: *bundle_cache_key
paths: paths:
- "/usr/local/bundle" - ".bundle"
macos-cache: macos-cache:
macos: macos:
xcode: "9.2.0" xcode: "9.2.0"
...@@ -70,9 +74,12 @@ jobs: ...@@ -70,9 +74,12 @@ jobs:
specs-linux_2.4: specs-linux_2.4:
docker: docker:
- image: ruby:2.4 - image: circleci/ruby:2.4
working_directory: /cocoapods working_directory: /cocoapods
environment: environment:
BUNDLE_PATH: ''
BUNDLE_BIN: ''
BUNDLE_APP_CONFIG: ''
COCOAPODS_CI_TASKS: SPECS COCOAPODS_CI_TASKS: SPECS
<<: *steps <<: *steps
...@@ -85,9 +92,12 @@ jobs: ...@@ -85,9 +92,12 @@ jobs:
lint: lint:
docker: docker:
- image: ruby:2.4 - image: circleci/ruby:2.4
working_directory: /cocoapods working_directory: /cocoapods
environment: environment:
BUNDLE_PATH: ''
BUNDLE_BIN: ''
BUNDLE_APP_CONFIG: ''
COCOAPODS_CI_TASKS: LINT COCOAPODS_CI_TASKS: LINT
<<: *steps <<: *steps
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment