Skip to content

Commit

Permalink
fetch tags before checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
gmas committed Jan 23, 2019
1 parent 2c54b6e commit 0a2f71f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:

# The second checkout ensures we have the most recent code since the
# restore_cache step above can override the go-filecoin code with cached code
- run:
name: fetch all tags
command: |
git fetch --all
- checkout

# groth parameters are lazily generated by rust-proofs during seal
Expand Down Expand Up @@ -145,6 +149,10 @@ jobs:

# The second checkout ensures we have the most recent code since the
# restore_cache step above can override the go-filecoin code with cached code
- run:
name: fetch all tags
command: |
git fetch --all
- checkout

# groth parameters are lazily generated by rust-proofs during seal
Expand Down Expand Up @@ -244,6 +252,11 @@ jobs:
- setup_remote_docker:
docker_layer_caching: true
- checkout
- run:
name: fetch all tags
command: |
git fetch --all
- checkout
- attach_workspace:
at: "."
- run:
Expand Down

0 comments on commit 0a2f71f

Please sign in to comment.