Commit 92e050a1 authored by Danielle Tomlinson's avatar Danielle Tomlinson

Setup git on specs jobs

parent e73b9655
...@@ -5,6 +5,11 @@ references: ...@@ -5,6 +5,11 @@ references:
- COCOAPODS_CI_TASKS: SPECS - COCOAPODS_CI_TASKS: SPECS
steps: steps:
- checkout - checkout
- run:
name: Setup Git Credentials
command: |
git config --global user.email "tests@cocoapods.org"
git config --global user.name "CocoaPods Tests"
- run: bundle install - run: bundle install
- run: - run:
name: Fetch Specs Repo name: Fetch Specs Repo
...@@ -47,8 +52,11 @@ jobs: ...@@ -47,8 +52,11 @@ jobs:
- COCOAPODS_CI_TASKS: EXAMPLES - COCOAPODS_CI_TASKS: EXAMPLES
steps: steps:
- checkout - checkout
- run: git config --global user.email "tests@cocoapods.org" - run:
- run: git config --global user.name "CocoaPods Tests" name: Setup Git Credentials
command: |
git config --global user.email "tests@cocoapods.org"
git config --global user.name "CocoaPods Tests"
- run: bundle install - run: bundle install
- run: bundle exec pod env - run: bundle exec pod env
- run: .circle-scripts/fetch-cocoapods-repo-from-s3.sh - run: .circle-scripts/fetch-cocoapods-repo-from-s3.sh
......
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