Skip to content

Commit

Permalink
fixing SHA - attempt2
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 authored and gonuke committed Feb 15, 2019
1 parent d74618f commit 502d72a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ commands:
type: string
default: "build"
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha<< parameters.build >>
- save_cache:
key: v1-repo-{{ ${CIRCLE_SHA1}"<< parameters.build >>" }}
key: v1-repo-{{ checksum ".circle-sha<< parameters.build >>" }}
paths:
- ~/

Expand All @@ -45,9 +46,10 @@ commands:
type: string
default: "build"
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha<< parameters.build >>
- restore_cache:
keys:
key: v1-repo-{{ ${CIRCLE_SHA1}"<< parameters.build >>" }}
key: v1-repo-{{ checksum ".circle-sha<< parameters.build >>" }}

# Checkout and build PyNE
checkout_build:
Expand Down

0 comments on commit 502d72a

Please sign in to comment.