Skip to content

Commit

Permalink
More indentation adjustment....
Browse files Browse the repository at this point in the history
  • Loading branch information
mischakolbe committed Dec 30, 2018
1 parent 9fb78f1 commit ef8b9c6
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@ default-run: &default-run
steps:
- checkout
- restore-cache: &d2-restore-cache
keys:
- a1-dependencies-{{ checksum "requirements.txt" }}
- a1-dependencies-
keys:
- a1-dependencies-{{ checksum "requirements.txt" }}
- a1-dependencies-
- run:
name: install git
command: yum -y install git
name: install git
command: yum -y install git
- run: &d-set-up-mayapy
name: set up mayapy and install deps
command: make install-deps
name: set up mayapy and install deps
command: make install-deps
- save-cache: &d2-save-cache
paths:
- ~/venv/
key: a1-dependencies-{{ checksum "requirements.txt" }}
paths:
- ~/venv/
key: a1-dependencies-{{ checksum "requirements.txt" }}
- run: &run-tests
name: run tests
command: |
echo 'export MAYA_MODULE_PATH =~/cmt:$MAYA_MODULE_PATH' >> $BASH_ENV
make test-unit
name: run tests
command: |
echo 'export MAYA_MODULE_PATH =~/cmt:$MAYA_MODULE_PATH' >> $BASH_ENV
make test-unit
- store_test_results: &store-results
path: ~/test-results
path: ~/test-results
- store_artifacts: &store-artifacts
path: ~/.node_calculator
destination: ~/test-results
path: ~/.node_calculator
destination: ~/test-results


jobs:
Expand Down

0 comments on commit ef8b9c6

Please sign in to comment.